How to output JSON using PHP
PHP (version 5 >= 5.2.0, PECL json >= 1.2.0) provides a method json_encode to convert array to string.
$sample = array(
'name'=>'My Name',
'email'=>'my_email@example.com'
);
echo json_encode($sample);
PHP (version 5 >= 5.2.0, PECL json >= 1.2.0) provides a method json_encode to convert array to string.
$sample = array(
'name'=>'My Name',
'email'=>'my_email@example.com'
);
echo json_encode($sample);
‘upload_max_filesize’ and ‘post_max_size’ are of type PHP_INI_PERDIR, which means “Entry can be set in php.ini, .htaccess or httpd.conf”. So you can’t set it in your script.
We can set PHP_INI_PERDIR settings in a .htaccess file with ‘php_flag’Read More »Why PHP ini_set() does not work with upload_max_filesize
I just fell in need of knowing the name of the method that is currently being called. After having a few minutes of unsuccessful searching i just thought of Late Static Binding and here the PHP Manual helped me.
Read More »How can I get the name of the calling method in PHP
You can save the cURL output as a string for further manipulation. Following code takes care of: // create curl resource $ch = curl_init(); //… Read More »How to save cURL output to string