Search notes:

PHP: array_is_list

array_is_list($ary) returns true if $ary is a sequential array and false if is an associative array.
<?php

$list = [1,2,3,4];
$dict = ['num' => 42, 'txt' => 'Hello world'];

if (array_is_list($list)) { print("\$list is a list\n"); }
if (array_is_list($dict)) { print("\$dict is a list\n"); }

?>
Github repository about-php, path: /array/array_is_list.php

Index

Fatal error: Uncaught PDOException: SQLSTATE[HY000]: General error: 8 attempt to write a readonly database in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php:78 Stack trace: #0 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(78): PDOStatement->execute(Array) #1 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(30): insert_webrequest_('/notes/developm...', 1758206306, '216.73.216.150', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/web/php/snippets/array/array_is_list(44): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78