<?php #Ex: Short Set Ranking Hosting Provider Founded By Year // INPUT $Hosting_Years = array( ‘Bluehost’ => 2003, ‘Dreamhost’ => […]
How Can I Remove A Specific Item From An Array by jQuery?
//INPUT var array = [2020, 2021, 2022, 2023]; console.log(array); var index = array.indexOf(2020); if (index > -1) { array.splice(index, 1); } // OUTPUT : […]
How To Search In PHP Array Element Containing String | Like Binod
$example = array( “who” => “Who is Binod?”, “name” => “Dose Binod Tharu is Binod?”, “where” => […]
How to create and manage log file in php?
Create and manage crud operation log data PHP <?phpfunction crud_log($action = ”,$message = ”,$array_data = array()){ global $handle_crud_log; date_default_timezone_set(“Australia/Sydney”); //Ex. set australia/sydney timezone $crud_log_dir […]
How to define an empty object in PHP?
<?php $ObjAraay = new stdClass(); $ObjAraay->fname = “PHP”; $ObjAraay->lname = “Beginner”; echo “<pre>”; print_r($ObjAraay); echo “</pre>”;?> Result: