11:46:00 AM
Achappan Mahalingam
No comments
Related Posts:
Automatic Conversion to array is not possible in PHP. Why? The behavior of an automatic conversion to array is currently undefined in PHP. Because PHP supports indexing into strings via offsets using the same syntax as array indexing. E.g., <?php $a &… Read More
What is Type Juggling? When you declare a variable, there is no need to mention a specific type explicitly. PHP will take care of the automatic type conversion implicitly. That is to say, if you assign a string value to variable var, var b… Read More
How will you get the uploaded file name in PHP? $filename=$_FILES['fileToUpload']['name']; Note: "fileToUpload" will be taken from name of the input type '<input type="file" name="fileToUpload" id="fileToUpload">' … Read More
Which function is used to moves an uploaded file to a new location? move_uploaded_file (string $filename , string $destination ) Example: <?php if( isset($_POST['submit']) ) { $uploads_dir = '/uploads'; foreach ($_FILES["fileTo… Read More
What will be the output for the below code? for ($col = 0; $col < $highestColumnIndex; ++ $col) { $cell = $worksheet->getCellByColumnAndRow($col, $row); $val = $cell->getValue(); echo "Print Value is: "… Read More
Subscribe to:
Post Comments (Atom)
0 comments:
Post a Comment