$var1 = 'hello';
$var2 = $var1; // In C the variable var2 is created in memory right here
$var2 = 'bye'; // In PHP the variable var2 is created in memory here, up until now it still uses the same location of memory as var1
So in general, references should only be used if you want to work with the original variable, as it does not save memory or processing time.
DiskGenius 6.2.0.1829 - All Versions: Free, Lite & Portable by Razvan Serea
DiskGenius is a full-featured partition manager, which is designed to optimize disk usage for Windows users. It will efficiently help you recover lost data, resize/split partition, backup files, edit hex data, check bad sectors, manage virtual disks, erase data, etc.. Create a system image backup for current Windows with simple clicks to keep the operating system under protection.
DiskGenius key features:
Partition Management - It can create format, resize, extend, backup, split, hide and clone partition, both MBR and GPT are supported.
Disk and partition conversion - Convert dynamic disk to basic, convert virtual disk format and convert MBR to GPT, convert primary partition to logical.
File recovery - It can recover files deleted or emptied form recycle bin, recover files from damaged partition or disk and recover files by file type and supports file preview and file filter.
Partition recovery - It is the best partition recovery program in that it can recover files from damaged, corrupted and RAW partitions, search for lost partition and recover files from it, besides, it can fix partition table.
RAID recovery - It can reconstruct Virtual RAID and recover files from it, and all RAID types are supported.
Sector Editor - A Hex editor is embedded to help users edit raw hex data and recover data manually.
Backup and Restore - It can backup and restore partition including system partition, hard disk and partition table.
Bad Tracks - It can check and repair bad sectors for all storage devices; check hard disk S.M.A.R.T. information.
Delete files permanently - It can delete files permanently so that they can't be recovered by any data recovery software.
Virtual Disk - It supports virtual disks, including VMware, Virtual PC and Virtual Box.
Create WinPE bootable disk and you can manage disk partition when system crashes or there is no operating system on your computer.
Support FAT12/FAT16/FAt32/exFAT/NTFS/EXT2/EXT3/EXT4 file system format.
DiskGenius 6.2.0.1829 changelog:
Add the "Disk Speed Test" feature.
Add the "Windows Boot Repair and Conversion" feature.
Add the BMB21-2019 erase standard to the "Erase Sectors" feature.
Add support for restoring an individual partition from a PMFX disk image file.
Enhanced
The "Verify Or Repair Bad Sectors/Blocks" feature displays disk read speed in the detection window during scanning.
The "Quick Partition" dialog box allows users to quickly select the number of partitions by pressing the numeric keys 1, 2, 7, 8, or 9.
The "Set Volume Name" dialog box supports selecting preset volume labels provided by the software.
The "Copy Sectors" feature supports resuming copy tasks after modifying the number of skipped bad sectors.
Add the "TRIM Optimization" option to the format dialog box.
The "Clone Partition" and "Clone Disk" features perform TRIM optimization on target partitions or disks before cloning.
Add support for Not Equal To search conditions (prefixed with "!") when searching hexadecimal data in the sector editor.
Optimize the display of capacity values in the program interface to show two decimal places.
Add a minimize button to dialogs that may require long processing time.
Enhance support for the ReFS file system.
Enhance support for newer HIF and MP4 formats when recovering files by type.
Enhance support for the EXT4 file system.
Enhance compatibility of the "File Recovery" feature with special data structures.
Fixed
Fixed the issue that the selected file system type automatically reverted to NTFS after changing it to exFAT or EXT4 in the "Quick Partition" dialog box.
Fixed inaccurate Unicode string search results in the "Sector Editor" feature.
Fixed the issue that exceptions might occur when adding multiple disks in the "Erase Sectors" feature.
Fixed the issue that insufficient target disk space was incorrectly reported in some cases when cloning, backing up, or restoring disks.
Fixed the issue that folder modification timestamps were not preserved when copying files from ReFS partitions.
Fixed the issue that Excel-format reports generated by features such as file copying or bad sector checking could not be opened when the report contained more than one million rows.
Fixed the issue that folders were not displayed in the exclude-folder dialog box when backing up partitions to image files.
Fixed the issue that the "Erase Sectors" feature could not be executed in some cases.
Download: DiskGenius 6.2.0.1829 | 63.9 MB (Freeware, paid upgrade available)
Download: DiskGenius Portable 64-bit | 40.0 MB
Download: DiskGenius Portable 32-bit | 36.0 MB
Download: DiskGenius Lite 64-bit | 13.4 MB
Download: DiskGenius Lite 32-bit | 11.6 MB
View: DiskGenius Home Page | DiskGenius Screenshot
Get alerted to all of our Software updates on Twitter at @NeowinSoftware
Question
balupton
It seems that a lot or even most php programmers just jumped in and never read the manual or even know basic syntax...
The ones I see all the time are:
Not checking variable existence by just doing
instead of the correct
which will not return a notice exception
Reference: http://au3.php.net/manual/en/language.variables.php
Using short tags
instead of the proper
which will run on many more servers
Reference: http://php.net/manual/en/language.basic-syntax.php
Also the misuse of double quotes
should be
which saves processing time
Reference: http://php.net/manual/en/language.types.st...g.syntax.single
Those are just some of the most common ones.
So what i'm asking is:
Why didn't you know this stuff if you didn't before hand?
Or if you did know this, then why do you think things like this are so ignored?
Note:
The option "I thought I did until now." should read "No, I'm a professional developer."
The option "No." should read "No, I'm a unprofessional developer."
-------------------
This thread has kinda turned into a tips thread, so here are a collection of tips that have been collected so far.
Single quotes vs Double quotes
https://www.neowin.net/forum/index.php?show...amp;p=588249172
Switch statements VS if then else statements
switch ($var) { case $option1: break; case $option2: break; default: break; } // is faster than if ( $var == $option1 ) { } elseif ( $var == $option2 ) { } else { }Thanks to redFX for reminding us of that:
https://www.neowin.net/forum/index.php?show...amp;p=588271991
If then else statements VS ternary statements
if ( false ) { echo 'true'; } else { echo 'false'; } // if faster than echo (false ? 'true' : 'false'); // which is faster than echo false ? 'true' : 'false';Also applies for $var =, instead of echo. Thanks to redFX for that:
https://www.neowin.net/forum/index.php?show...amp;p=588271991
Pre-Increment VS Post-Increment
This applies everywhere, so in for loops etc. Thanks to phpmozzer for that:
https://www.neowin.net/forum/index.php?show...amp;p=588271806
Loops in order of speed
for, foreach, while, do-while. Thanks to redFX for that:
https://www.neowin.net/forum/index.php?show...amp;p=588271808
Strict (===) comparison is faster than loose (==) comparison.
https://www.neowin.net/forum/index.php?show...amp;p=588271983
Instantiating classes
Thanks to http://www.php.lt/benchmark/phpbench.php
For loops and size calculations
for ( $i = 0, $n = sizeof($array); $i < $n; $i++ ) {} // is faster than for ( $i = 0; $i < sizeof($array); $i++ ) {}https://www.neowin.net/forum/index.php?show...amp;p=588249623
Variable declarations and memory
So in general, references should only be used if you want to work with the original variable, as it does not save memory or processing time.
https://www.neowin.net/forum/index.php?show...amp;p=588249172
If you know any others, feel free to post them :)
Edited by baluptonLink to comment
https://www.neowin.net/forum/topic/531433-php-do-you-know-basic-syntax/Share on other sites
39 answers to this question
Recommended Posts