Author Archives: Roopendra - Page 11
Changes in PHP Ternary Operator since PHP 5.3
Changes in PHP ternary operator since PHP Till PHP $varName = ($cond) ? $cond : 'false'; From PHP $varName = ($cond) ? : 'false'; No need to write condition for…
Post JSON data via PHP cURL
Post JSON data via PHP cURL We can Post JSON data via PHP curl by using header Content-Type: application/json in CURLOPT_HTTPHEADER. Below is working code demonstration of PHP curl with…