Code worth dying for!
You are not logged in.
Pages: 1
Download: php.lua
Say you copy the headers of a database table in PHPMyAdmin to the clipboard giving you "id title content author". Executing the command php array will generate:
array(
"id" => "",
"title" => "",
"content" => "",
"author" => ""
);
Alternatively, executing the command php array -v will generate:
array("id", "title", "content", "author");
Offline
Pages: 1