Code like that is common. Using variables to show status messages has limitations. They cannot be send via redirects (unless you propagate them as GET variables to the next script , which is very silly). In large scripts there might be multiple messages etc.<\/p>
Best way is to use session to propagate them (even if on same page). For this there has to be a session_start on every page.<\/p>
function set_flash($msg){ $_SESSION['message'] = $msg;}function get_flash(){ $msg = $_SESSION['message']; unset($_SESSION['message']); return $msg;}<\/pre> and in your script :<\/p> 国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂Status is :
and in your script :<\/p>
国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂Status is :
function add_to_cart($item_id , $qty){ $_SESSION['cart'][$item_id] = $qty;}add_to_cart( 'IPHONE3' , 2 );<\/pre> When adding a single item you use the above function. When adding multiple items , will you create another function ? NO. Just make the function flexible enough to take different kinds of parameters. Have a closer look :<\/p> function add_to_cart($item_id , $qty){ if(!is_array($item_id)) { $_SESSION['cart'][$item_id] = $qty; } else { foreach($item_id as $i_id => $qty) { $_SESSION['cart'][$i_id] = $qty; } }}add_to_cart( 'IPHONE3' , 2 );add_to_cart( array('IPHONE3' => 2 , 'IPAD' => 5) );<\/pre> So now the same function can accept different kinds of output. The above can be applied in lots of places to make your code more agile.<\/p> 6. Omit the closing php tag if it is the last thing in a script I wonder why this tip is omitted from so many blog posts on php tips.<\/p> This will save you lots of problem. Lets take an example :<\/p> A class file super_class.php<\/p> \/\/super extra character after the closing tag<\/pre> Now index.php<\/p> require_once('super_class.php');\/\/echo an image or pdf , or set the cookies or session data<\/pre> And you will get Headers already send error. Why ? because the \"super extra character\" has been echoed , and all headers went along with that. Now you start debugging. You may have to waste many hours to find the super extra space.<\/p> Hence make it a habit to omit the closing tag :<\/p> Thats better.<\/p> 7. Collect all output at one place , and output at one shot to the browser This is called output buffering. Lets say you have been echoing content from different functions like this :<\/p> function print_header(){ echo \"Site Log and Login links<\/div>\";}function print_footer(){ echo \"Site was made by me<\/div>\";}print_header();for($i = 0 ; $i < 100; $i++){ echo \"I is : $i ';}print_footer();<\/pre> Instead of doing like that , first collect all output in one place. You can either store it inside variables in the functions or use ob_start and ob_end_clean. So now it should look like<\/p> function print_header(){ $o = \"Site Log and Login links<\/div>\"; return $o;}function print_footer(){ $o = \"Site was made by me<\/div>\"; return $o;}echo print_header();for($i = 0 ; $i < 100; $i++){ echo \"I is : $i ';}echo print_footer();<\/pre> So why should you do output buffering :<\/p> You can change the output just before sending it to browser if you need to. Think about doing some str_replaces , or may be preg_replaces or may be adding some extra html at the end like profiler\/debugger output Its a bad idea to send output to browser and do php processing at the same time. Have you ever seen a website where there is a Fatal error in the sidebar or in a box in the middle of the screen. You know why that happens ? Because processing and output are being mixed. 8. Send correct mime types via header when outputting non-html content Lets echo some xml.<\/p> $xml = '';$xml = \" 0<\/code><\/response>\";\/\/Send xml dataecho $xml;<\/pre> Works fine. But it needs some improvement.<\/p> $xml = '';$xml = \" 0<\/code><\/response>\";\/\/Send xml dataheader(\"content-type: text\/xml\");echo $xml;<\/pre> Note that header line. That line tells the browser that the content is xml content. So the browser can handle it correctly. Many javascript libraries also rely on header information.<\/p> Similarly for javascript , css , jpg image , png image :<\/p> Javascript<\/p> header(\"content-type: application\/x-javascript\");echo \"var a = 10\";<\/pre> CSS<\/p> header(\"content-type: text\/css\");echo \"#div id { background:#000; }\";<\/pre> 9. Set the correct character encoding for a mysql connection Ever faced a problem that unicode\/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation.<\/p> $host = 'localhost';$username = 'root';$password = 'super_secret';\/\/Attempt to connect to database$c = mysqli_connect($host , $username, $password);\t\t\/\/Check connection validityif (!$c) {\tdie (\"Could not connect to the database host: \". mysqli_connect_error());}\t\t\/\/Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){\tdie('mysqli_set_charset() failed');}<\/pre> Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application.<\/p> Otherwise what will happen ? You will see lots of boxes and ???????? in non english text.<\/p> 10. Use htmlentities with the correct characterset option Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc.<\/p> $value = htmlentities($this->value , ENT_QUOTES , 'UTF-8');<\/pre> Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual.<\/p> 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php.<\/p> Use apache mod_gzip\/mod_deflate to compress content via the .htaccess file.<\/p> 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php.<\/p> $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= \"'$image' ,\";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;\/\/Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,];<\/pre> Be smart. use json_encode :<\/p> $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;\/\/Output is : var images = [\"myself.png\",\"friends.png\",\"colleagues.png\"]<\/pre> Isn't that neat ?<\/p> 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of \"debugging\" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on.<\/p> Make sure that your application is as intelligent as possible and reports the most important information in the shortest time.<\/p> $contents = \"All the content\";$file_path = \"\/var\/www\/project\/content.txt\";file_put_contents($file_path , $contents);<\/pre> That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons :<\/p> Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file.<\/p> $contents = \"All the content\";$dir = '\/var\/www\/project';$file_path = $dir . \"\/content.txt\";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die(\"Directory $dir is not writable, or does not exist. Please check\");}<\/pre> By doing this you get the accurate information that where is a file write failing and why<\/p> 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are \"accessible\" outside. Otherwise for example the files may be created by \"php\" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on.<\/p> \/\/ Read and write for owner, read for everybody elsechmod(\"\/somedir\/somefile\", 0644);\/\/ Everything for owner, read and execute for otherschmod(\"\/somedir\/somefile\", 0755);<\/pre> 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ \/\/Save the things}<\/pre> The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this :<\/p> if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ \/\/Save the things}<\/pre> Now you are free from the value the submit button<\/p> 16. Use static variables in function where they always have same value \/\/Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); \t echo \"Delaying for $sync_delay seconds...\"; sleep($sync_delay); echo \"Done \";}<\/pre> Instead use static variables as :<\/p> \/\/Delay for some timefunction delay(){ static $sync_delay = null;\t if($sync_delay == null) {\t$sync_delay = get_option('sync_delay'); }\t echo \"Delaying for $sync_delay seconds...\"; sleep($sync_delay); echo \"Done \";}<\/pre> 17. Don't use the $_SESSION variable directly Some simple examples are :<\/p> $_SESSION['username'] = $username;$username = $_SESSION['username'];<\/pre> But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain.<\/p> Hence use application specific keys with wrapper functions :<\/p> define('APP_ID' , 'abc_corp_ecommerce');\/\/Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}\/\/Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;}<\/pre> 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like :<\/p> function utility_a(){ \/\/This function does a utility thing like string processing}function utility_b(){ \/\/This function does nother utility thing like database processing}function utility_c(){ \/\/This function is ...}<\/pre> And you use the function throughout your application freely. You may want to wrap them into a class as static functions :<\/p> class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}\/\/and call them as $a = Utility::utility_a();$b = Utility::utility_b();<\/pre> One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else.<\/p> 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++;<\/pre> Its absolutely a WASTE.<\/p> Write<\/p> if($a == true){ $a_count++;}<\/pre> Dont try to make your code shorter by eating up syntax. Rather make your logic shorter.<\/p> Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this :<\/p> foreach($arr as $c => $v){\t$arr[$c] = trim($v);}<\/pre> But it can more cleaner with array_map :<\/p> $arr = array_map('trim' , $arr);<\/pre> This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more.<\/p> 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters.<\/p> The php filter extension provides simple way to validate or check values as being a valid 'something'.<\/p> 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate'];<\/pre> Its a good habit.<\/p> 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose<\/p> 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded :<\/p> $db_records_in_array_format; \/\/This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; \/\/2MB moresome_function($cc); \/\/Another 2MB ?<\/pre> The above thing is common when importing a csv file or exporting table to a csv file<\/p> Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays.<\/p> Consider passing them by reference , or storing them in a class variable :<\/p> $a = get_large_array();pass_to_function(&$a);<\/pre> by doing this the same variable (and not its copy) will be available to the function. Check documentation<\/p> class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { \/\/process $this->a }}<\/pre> unset them as soon as possible , so that memory is freed and rest of the script can relax.<\/p> Here is a simple demonstration of how assign by reference can save memory in some cases<\/p> ';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() \/ 1000000 . '';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() \/ 1000000 . '';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() \/ 1000000 . '';<\/pre> The output on a typical php 5.4 machine is :<\/p> Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 <\/p> So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more.<\/p> 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this :<\/p> function add_to_cart(){ $db = new Database(); $db->query(\"INSERT INTO cart .....\");}function empty_cart(){ $db = new Database(); $db->query(\"DELETE FROM cart .....\");}<\/pre> Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory.<\/p> Use the singleton pattern for special cases like database connection.<\/p> 26. Avoid direct SQL query , abstract it $query = \"INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')\";$db->query($query); \/\/call to mysqli_query()<\/pre> The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like:<\/p> All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord<\/p> It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries.<\/p> A very simple example of an activerecord insert function can be like this :<\/p> function insert_record($table_name , $data){ foreach($data as $key => $value) {\t\/\/mysqli_real_escape_string $data[$key] = $db->mres($value); }\t\t $fields = implode(',' , array_keys($data)); $values = \"'\" . implode(\"','\" , array_values($data)) . \"'\"; \/\/Final query\t $query = \"INSERT INTO {$table}($fields) VALUES($values)\";\t\t return $db->query($query);}\/\/data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);\/\/perform the INSERT queryinsert_record('users' , $data);<\/pre> The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse).<\/p> This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise.<\/p> 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again.<\/p> Benefits :<\/p> Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue.<\/p> Storing session in database makes many other things easier like:<\/p> Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines\/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example :<\/p> <\/head> <\/body><\/html><\/pre> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories.<\/p> Lets take an example<\/p> www.domain.com\/store\/home.php www.domain.com\/store\/products\/ipad.php<\/p> In home.php the following can be written :<\/p> Home<\/a>Ipad<\/a><\/pre> But in ipad.php the links have to be like this :<\/p> Home<\/a>Ipad<\/a><\/pre> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag.<\/p> <\/head>Home<\/a>Ipad<\/a><\/body><\/html><\/pre> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products\/ipad.php<\/p> 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing.<\/p> ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT);<\/pre> On production , the display should be disabled.<\/p> ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark.<\/p> After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set.<\/p> ini_set('log_errors' , '1');ini_set('error_log' , '\/path\/to\/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> Note :<\/p> 1. The path '\/path\/to\/errors.txt' should be writable by the web server for errors to be logged there.<\/p> 2. A separate error file is specified , otherwise all logs would go inside the apache\/web server error log and get mixed up with other apache errors.<\/p> 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver).<\/p> 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like \/var\/log dont have to searched.<\/p> 5. Dont set error_reporting to 0. It will not log anything then.<\/p> Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file.<\/p> Set 'display_errors=On' in php.ini on development machine<\/p> On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page.<\/p> Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work.<\/p> Set 'display_errors=Off' in php.ini on production machine<\/p> Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away.<\/p> 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results.<\/p> On a 64 bit machine you can see such output.<\/p> $ php -aInteractive shellphp > echo strtotime(\"0000-00-00 00:00:00\");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600<\/pre> But on a 32 bit machine all of them would give bool(false). Check here for more.<\/p> What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines.<\/p> 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this :<\/p> set_time_limit(30);\/\/Rest of the code<\/pre> It may not always work. Any execution that happens outside the script via system calls\/os functions like socket operations, database operations etc. will not be under control of set_time_limit.<\/p> So if a database operation takes lot of time or \"hangs\" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time.<\/p> 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it.<\/p> A better solution :<\/p> \/**\tMethod to execute a command in the terminal\tUses :\t1. system\t2. passthru\t3. exec\t4. shell_exec*\/function terminal($command){\t\/\/system\tif(function_exists('system'))\t{\t\tob_start();\t\tsystem($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/passthru\telse if(function_exists('passthru'))\t{\t\tob_start();\t\tpassthru($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/exec\telse if(function_exists('exec'))\t{\t\texec($command , $output , $return_var);\t\t$output = implode(\"\\n\" , $output);\t}\t\/\/shell_exec\telse if(function_exists('shell_exec'))\t{\t\t$output = shell_exec($command) ;\t}\telse\t{\t\t$output = 'Command execution not possible on this system';\t\t$return_var = 1;\t}\treturn array('output' => $output , 'status' => $return_var);}terminal('ls');<\/pre> The above function will execute the shell command using whichever function is available , keeping your code consistent.<\/p> 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user.<\/p> 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise.<\/p> Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind.<\/p> 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily.<\/p> Few popular libraries are :<\/p> mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference.<\/p> 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code.<\/p> Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community.<\/p> They contain user feedback, expert advice and useful code snippets. So check them out.<\/p> 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!!<\/p> 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc.<\/p> The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more<\/p> 1. Codeigniter 2. WordPress 3. Joomla CMS<\/p> 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment.<\/p> Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster.<\/p> Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free.<\/p> "} 社區(qū) 文章 合集 問答 學習 課程 編程詞典 工具庫 開發(fā)工具 網(wǎng)站源碼 PHP 庫 JS特效 網(wǎng)站素材 擴展插件 AI工具 休閑 游戲下載 游戲教程 簡體中文 簡體中文 English 繁體中文 日本語 ??? Melayu Fran?ais Deutsch Login singup 首頁 后端開發(fā) php教程 40+ Useful Php tips for beginners ? Part 1 40+ Useful Php tips for beginners ? Part 1 WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB Jun 23, 2016 pm 02:37 PM PHP學習指南 http://www.binarytides.com/category/php-2/tutorial/ In this series we are going to look into some useful tips and techniques that can be used to improve and optimise your php code. Note that these php tips are meant for beginners and not those who are already using mvc frameworks etc. The Techniques 1. Do not use relative paths , instead define a ROOT path Its quite common to see such lines : require_once('http://www.cnblogs.com/lib/some_class.php'); This approach has many drawbacks : It first searches for directories specified in the include paths of php , then looks from the current directory. So many directories are checked. When a script is included by another script in a different directory , its base directory changes to that of the including script. Another issue , is that when a script is being run from cron , it may not have its parent directory as the working directory. So its a good idea to have absolute paths : define('ROOT' , '/var/www/project/');require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code Now this is an absolute path and will always stay constant. But we can improve this further. The directory /var/www/project can change , so do we change it everytime ? No instead we make it portable using magic constants like __FILE__ . Take a closer look : //suppose your script is /var/www/project/index.php//Then __FILE__ will always have that full path.define('ROOT' , pathinfo(__FILE__, PATHINFO_DIRNAME));require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code So now even if you shift your project to a different directory , like moving it to an online server , the same code will run without any changes. 2. Dont use require , include , require_once or include_once Your script could be including various files on top , like class libraries , files for utility and helper functions etc like this : require_once('lib/Database.php');require_once('lib/Mail.php');require_once('helpers/utitlity_functions.php'); This is rather primitive. The code needs to be more flexible. Write up helper functions to include things more easily. Lets take an example : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); require_once( $path ); }load_class('Database');load_class('Mail'); See any difference ? You must. It does not need any more explanation. You can improve this further if you wish to like this : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); if(file_exists($path)) { require_once( $path ); }} There are a lot of things that can be done with this : Search multiple directories for the same class file. Change the directory containing class files easily , without breaking the code anywhere. Use similar functions for loading files that contain helper functions , html content etc. 3. Maintain debugging environment in your application During development we echo database queries , dump variables which are creating problems , and then once the problem is solved , we comment them or erase them. But its a good idea to let everything stay and help in the long run On your development machine you can do this : define('ENVIRONMENT' , 'development');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } And on the server you can do this : define('ENVIRONMENT' , 'production');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } 4. Propagate status messages via session Status messages are those messages that are generated after doing a task. <?phpif($wrong_username || $wrong_password){ $msg = 'Invalid username or password';}?><html><body><?php echo $msg; ?><form>...</form></body></html> Code like that is common. Using variables to show status messages has limitations. They cannot be send via redirects (unless you propagate them as GET variables to the next script , which is very silly). In large scripts there might be multiple messages etc. Best way is to use session to propagate them (even if on same page). For this there has to be a session_start on every page. function set_flash($msg){ $_SESSION['message'] = $msg;}function get_flash(){ $msg = $_SESSION['message']; unset($_SESSION['message']); return $msg;} and in your script : <?phpif($wrong_username || $wrong_password){ set_flash('Invalid username or password');}?><html><body>Status is : <?php echo get_flash(); ?><form>...</form></body></html> 5. Make your functions flexible function add_to_cart($item_id , $qty){ $_SESSION['cart'][$item_id] = $qty;}add_to_cart( 'IPHONE3' , 2 ); When adding a single item you use the above function. When adding multiple items , will you create another function ? NO. Just make the function flexible enough to take different kinds of parameters. Have a closer look : function add_to_cart($item_id , $qty){ if(!is_array($item_id)) { $_SESSION['cart'][$item_id] = $qty; } else { foreach($item_id as $i_id => $qty) { $_SESSION['cart'][$i_id] = $qty; } }}add_to_cart( 'IPHONE3' , 2 );add_to_cart( array('IPHONE3' => 2 , 'IPAD' => 5) ); So now the same function can accept different kinds of output. The above can be applied in lots of places to make your code more agile. 6. Omit the closing php tag if it is the last thing in a script I wonder why this tip is omitted from so many blog posts on php tips. <?phpecho "Hello";//Now dont close this tag This will save you lots of problem. Lets take an example : A class file super_class.php <?phpclass super_class{ function super_function() { //super code }}?>//super extra character after the closing tag Now index.php require_once('super_class.php');//echo an image or pdf , or set the cookies or session data And you will get Headers already send error. Why ? because the "super extra character" has been echoed , and all headers went along with that. Now you start debugging. You may have to waste many hours to find the super extra space. Hence make it a habit to omit the closing tag : <?phpclass super_class{ function super_function() { //super code }}//No closing tag Thats better. 7. Collect all output at one place , and output at one shot to the browser This is called output buffering. Lets say you have been echoing content from different functions like this : function print_header(){ echo "<div id='header'>Site Log and Login links</div>";}function print_footer(){ echo "<div id='footer'>Site was made by me</div>";}print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}print_footer(); Instead of doing like that , first collect all output in one place. You can either store it inside variables in the functions or use ob_start and ob_end_clean. So now it should look like function print_header(){ $o = "<div id='header'>Site Log and Login links</div>"; return $o;}function print_footer(){ $o = "<div id='footer'>Site was made by me</div>"; return $o;}echo print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}echo print_footer(); So why should you do output buffering : You can change the output just before sending it to browser if you need to. Think about doing some str_replaces , or may be preg_replaces or may be adding some extra html at the end like profiler/debugger output Its a bad idea to send output to browser and do php processing at the same time. Have you ever seen a website where there is a Fatal error in the sidebar or in a box in the middle of the screen. You know why that happens ? Because processing and output are being mixed. 8. Send correct mime types via header when outputting non-html content Lets echo some xml. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataecho $xml; Works fine. But it needs some improvement. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataheader("content-type: text/xml");echo $xml; Note that header line. That line tells the browser that the content is xml content. So the browser can handle it correctly. Many javascript libraries also rely on header information. Similarly for javascript , css , jpg image , png image : Javascript header("content-type: application/x-javascript");echo "var a = 10"; CSS header("content-type: text/css");echo "#div id { background:#000; }"; 9. Set the correct character encoding for a mysql connection Ever faced a problem that unicode/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation. $host = 'localhost';$username = 'root';$password = 'super_secret';//Attempt to connect to database$c = mysqli_connect($host , $username, $password); //Check connection validityif (!$c) { die ("Could not connect to the database host: <br />". mysqli_connect_error());} //Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){ die('mysqli_set_charset() failed');} Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application. Otherwise what will happen ? You will see lots of boxes and ???????? in non english text. 10. Use htmlentities with the correct characterset option Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc. $value = htmlentities($this->value , ENT_QUOTES , 'UTF-8'); Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual. 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php. Use apache mod_gzip/mod_deflate to compress content via the .htaccess file. 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php. $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= "'$image' ,";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;//Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,]; Be smart. use json_encode : $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;//Output is : var images = ["myself.png","friends.png","colleagues.png"] Isn't that neat ? 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of "debugging" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on. Make sure that your application is as intelligent as possible and reports the most important information in the shortest time. $contents = "All the content";$file_path = "/var/www/project/content.txt";file_put_contents($file_path , $contents); That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons : Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file. $contents = "All the content";$dir = '/var/www/project';$file_path = $dir . "/content.txt";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die("Directory $dir is not writable, or does not exist. Please check");} By doing this you get the accurate information that where is a file write failing and why 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are "accessible" outside. Otherwise for example the files may be created by "php" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on. // Read and write for owner, read for everybody elsechmod("/somedir/somefile", 0644);// Everything for owner, read and execute for otherschmod("/somedir/somefile", 0755); 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ //Save the things} The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this : if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ //Save the things} Now you are free from the value the submit button 16. Use static variables in function where they always have same value //Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} Instead use static variables as : //Delay for some timefunction delay(){ static $sync_delay = null; if($sync_delay == null) { $sync_delay = get_option('sync_delay'); } echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} 17. Don't use the $_SESSION variable directly Some simple examples are : $_SESSION['username'] = $username;$username = $_SESSION['username']; But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain. Hence use application specific keys with wrapper functions : define('APP_ID' , 'abc_corp_ecommerce');//Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}//Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;} 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like : function utility_a(){ //This function does a utility thing like string processing}function utility_b(){ //This function does nother utility thing like database processing}function utility_c(){ //This function is ...} And you use the function throughout your application freely. You may want to wrap them into a class as static functions : class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}//and call them as $a = Utility::utility_a();$b = Utility::utility_b(); One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else. 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++; Its absolutely a WASTE. Write if($a == true){ $a_count++;} Dont try to make your code shorter by eating up syntax. Rather make your logic shorter. Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this : foreach($arr as $c => $v){ $arr[$c] = trim($v);} But it can more cleaner with array_map : $arr = array_map('trim' , $arr); This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more. 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters. The php filter extension provides simple way to validate or check values as being a valid 'something'. 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate']; Its a good habit. 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded : $db_records_in_array_format; //This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; //2MB moresome_function($cc); //Another 2MB ? The above thing is common when importing a csv file or exporting table to a csv file Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays. Consider passing them by reference , or storing them in a class variable : $a = get_large_array();pass_to_function(&$a); by doing this the same variable (and not its copy) will be available to the function. Check documentation class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { //process $this->a }} unset them as soon as possible , so that memory is freed and rest of the script can relax. Here is a simple demonstration of how assign by reference can save memory in some cases <?phpini_set('display_errors' , true);error_reporting(E_ALL);$a = array();for($i = 0; $i < 100000 ; $i++){ $a[$i] = 'A'.$i;}echo 'Memory usage in MB : '. memory_get_usage() / 1000000 . '<br />';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() / 1000000 . '<br />';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() / 1000000 . '<br />';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() / 1000000 . '<br />'; The output on a typical php 5.4 machine is : Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more. 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this : function add_to_cart(){ $db = new Database(); $db->query("INSERT INTO cart .....");}function empty_cart(){ $db = new Database(); $db->query("DELETE FROM cart .....");} Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory. Use the singleton pattern for special cases like database connection. 26. Avoid direct SQL query , abstract it $query = "INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')";$db->query($query); //call to mysqli_query() The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like: All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries. A very simple example of an activerecord insert function can be like this : function insert_record($table_name , $data){ foreach($data as $key => $value) { //mysqli_real_escape_string $data[$key] = $db->mres($value); } $fields = implode(',' , array_keys($data)); $values = "'" . implode("','" , array_values($data)) . "'"; //Final query $query = "INSERT INTO {$table}($fields) VALUES($values)"; return $db->query($query);}//data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);//perform the INSERT queryinsert_record('users' , $data); The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse). This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise. 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again. Benefits : Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue. Storing session in database makes many other things easier like: Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example : <head> <base href="http://www.domain.com/store/"></head><body> <img src="/static/imghw/default1.png" data-src="happy.jpg" class="lazy" / alt="40+ Useful Php tips for beginners ? Part 1" ></body></html> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories. Lets take an example www.domain.com/store/home.php www.domain.com/store/products/ipad.php In home.php the following can be written : <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> But in ipad.php the links have to be like this : <a href="../home.php">Home</a><a href="ipad.php">Ipad</a> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag. <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products/ipad.php 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing. ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT); On production , the display should be disabled. ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark. After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set. ini_set('log_errors' , '1');ini_set('error_log' , '/path/to/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); Note : 1. The path '/path/to/errors.txt' should be writable by the web server for errors to be logged there. 2. A separate error file is specified , otherwise all logs would go inside the apache/web server error log and get mixed up with other apache errors. 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver). 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like /var/log dont have to searched. 5. Dont set error_reporting to 0. It will not log anything then. Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file. Set 'display_errors=On' in php.ini on development machine On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page. Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work. Set 'display_errors=Off' in php.ini on production machine Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away. 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results. On a 64 bit machine you can see such output. $ php -aInteractive shellphp > echo strtotime("0000-00-00 00:00:00");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600 But on a 32 bit machine all of them would give bool(false). Check here for more. What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines. 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this : set_time_limit(30);//Rest of the code It may not always work. Any execution that happens outside the script via system calls/os functions like socket operations, database operations etc. will not be under control of set_time_limit. So if a database operation takes lot of time or "hangs" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time. 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it. A better solution : /** Method to execute a command in the terminal Uses : 1. system 2. passthru 3. exec 4. shell_exec*/function terminal($command){ //system if(function_exists('system')) { ob_start(); system($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //passthru else if(function_exists('passthru')) { ob_start(); passthru($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //exec else if(function_exists('exec')) { exec($command , $output , $return_var); $output = implode("\n" , $output); } //shell_exec else if(function_exists('shell_exec')) { $output = shell_exec($command) ; } else { $output = 'Command execution not possible on this system'; $return_var = 1; } return array('output' => $output , 'status' => $return_var);}terminal('ls'); The above function will execute the shell command using whichever function is available , keeping your code consistent. 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user. 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise. Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind. 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily. Few popular libraries are : mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference. 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code. Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community. They contain user feedback, expert advice and useful code snippets. So check them out. 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!! 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc. The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more 1. Codeigniter 2. WordPress 3. Joomla CMS 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment. Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster. Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free. 本站聲明 本文內(nèi)容由網(wǎng)友自發(fā)貢獻,版權(quán)歸原作者所有,本站不承擔相應(yīng)法律責任。如您發(fā)現(xiàn)有涉嫌抄襲侵權(quán)的內(nèi)容,請聯(lián)系admin@php.cn 熱AI工具 Undress AI Tool 免費脫衣服圖片 Undresser.AI Undress 人工智能驅(qū)動的應(yīng)用程序,用于創(chuàng)建逼真的裸體照片 AI Clothes Remover 用于從照片中去除衣服的在線人工智能工具。 Clothoff.io AI脫衣機 Video Face Swap 使用我們完全免費的人工智能換臉工具輕松在任何視頻中換臉! 顯示更多 熱門文章 指南:恒星刀片保存文件位置/保存文件丟失/不保存 4 周前 By DDD Oguri Cap Build Guide |漂亮的德比志 2 周前 By Jack chen Agnes Tachyon Build Guide |漂亮的德比志 1 周前 By Jack chen 沙丘:覺醒 - 高級行星學家Quest演練 4 周前 By Jack chen 約會一切:德克和哈珀關(guān)系指南 4 周前 By Jack chen 顯示更多 熱工具 記事本++7.3.1 好用且免費的代碼編輯器 SublimeText3漢化版 中文版,非常好用 禪工作室 13.0.1 功能強大的PHP集成開發(fā)環(huán)境 Dreamweaver CS6 視覺化網(wǎng)頁開發(fā)工具 SublimeText3 Mac版 神級代碼編輯軟件(SublimeText3) 顯示更多 熱門話題 gmail郵箱登陸入口在哪里 8638 17 Java教程 1783 16 CakePHP 教程 1728 56 Laravel 教程 1578 28 PHP教程 1442 31 顯示更多 Related knowledge 如何在PHP中實施身份驗證和授權(quán)? Jun 20, 2025 am 01:03 AM tosecurelyhandleauthenticationandationallizationInphp,lofterTheSesteps:1.AlwaysHashPasswordSwithPassword_hash()andverifyusingspasspassword_verify(),usepreparedStatatementStopreventsqlineptions,andStoreSeruserDatain usseruserDatain $ _sessiveferterlogin.2.implementrole-2.imaccessccsccccccccccccccccccccccccc. 如何在PHP中安全地處理文件上傳? Jun 19, 2025 am 01:05 AM 要安全處理PHP中的文件上傳,核心在于驗證文件類型、重命名文件并限制權(quán)限。1.使用finfo_file()檢查真實MIME類型,僅允許特定類型如image/jpeg;2.用uniqid()生成隨機文件名,存儲至非Web根目錄;3.通過php.ini和HTML表單限制文件大小,設(shè)置目錄權(quán)限為0755;4.使用ClamAV掃描惡意軟件,增強安全性。這些步驟有效防止安全漏洞,確保文件上傳過程安全可靠。 PHP中==(松散比較)和===(嚴格的比較)之間有什么區(qū)別? Jun 19, 2025 am 01:07 AM 在PHP中,==與===的主要區(qū)別在于類型檢查的嚴格程度。==在比較前會進行類型轉(zhuǎn)換,例如5=="5"返回true,而===要求值和類型都相同才會返回true,例如5==="5"返回false。使用場景上,===更安全應(yīng)優(yōu)先使用,==僅在需要類型轉(zhuǎn)換時使用。 如何在PHP( - , *, /,%)中執(zhí)行算術(shù)操作? Jun 19, 2025 pm 05:13 PM PHP中使用基本數(shù)學運算的方法如下:1.加法用 號,支持整數(shù)和浮點數(shù),也可用于變量,字符串數(shù)字會自動轉(zhuǎn)換但不推薦依賴;2.減法用-號,變量同理,類型轉(zhuǎn)換同樣適用;3.乘法用*號,適用于數(shù)字及類似字符串;4.除法用/號,需避免除以零,并注意結(jié)果可能是浮點數(shù);5.取模用%號,可用于判斷奇偶數(shù),處理負數(shù)時余數(shù)符號與被除數(shù)一致。正確使用這些運算符的關(guān)鍵在于確保數(shù)據(jù)類型清晰并處理好邊界情況。 如何與PHP的NOSQL數(shù)據(jù)庫(例如MongoDB,Redis)進行交互? Jun 19, 2025 am 01:07 AM 是的,PHP可以通過特定擴展或庫與MongoDB和Redis等NoSQL數(shù)據(jù)庫交互。首先,使用MongoDBPHP驅(qū)動(通過PECL或Composer安裝)創(chuàng)建客戶端實例并操作數(shù)據(jù)庫及集合,支持插入、查詢、聚合等操作;其次,使用Predis庫或phpredis擴展連接Redis,執(zhí)行鍵值設(shè)置與獲取,推薦phpredis用于高性能場景,Predis則便于快速部署;兩者均適用于生產(chǎn)環(huán)境且文檔完善。 我如何了解最新的PHP開發(fā)和最佳實踐? Jun 23, 2025 am 12:56 AM TostaycurrentwithPHPdevelopmentsandbestpractices,followkeynewssourceslikePHP.netandPHPWeekly,engagewithcommunitiesonforumsandconferences,keeptoolingupdatedandgraduallyadoptnewfeatures,andreadorcontributetoopensourceprojects.First,followreliablesource 什么是PHP,為什么它用于Web開發(fā)? Jun 23, 2025 am 12:55 AM PHPbecamepopularforwebdevelopmentduetoitseaseoflearning,seamlessintegrationwithHTML,widespreadhostingsupport,andalargeecosystemincludingframeworkslikeLaravelandCMSplatformslikeWordPress.Itexcelsinhandlingformsubmissions,managingusersessions,interacti 如何設(shè)置PHP時區(qū)? Jun 25, 2025 am 01:00 AM tosetTherightTimeZoneInphp,restate_default_timezone_set()functionAtthestArtofyourscriptWithavalIdidentIdentifiersuchas'america/new_york'.1.usedate_default_default_timezone_set_set() See all articles
When adding a single item you use the above function. When adding multiple items , will you create another function ? NO. Just make the function flexible enough to take different kinds of parameters. Have a closer look :<\/p>
function add_to_cart($item_id , $qty){ if(!is_array($item_id)) { $_SESSION['cart'][$item_id] = $qty; } else { foreach($item_id as $i_id => $qty) { $_SESSION['cart'][$i_id] = $qty; } }}add_to_cart( 'IPHONE3' , 2 );add_to_cart( array('IPHONE3' => 2 , 'IPAD' => 5) );<\/pre> So now the same function can accept different kinds of output. The above can be applied in lots of places to make your code more agile.<\/p> 6. Omit the closing php tag if it is the last thing in a script I wonder why this tip is omitted from so many blog posts on php tips.<\/p> This will save you lots of problem. Lets take an example :<\/p> A class file super_class.php<\/p> \/\/super extra character after the closing tag<\/pre> Now index.php<\/p> require_once('super_class.php');\/\/echo an image or pdf , or set the cookies or session data<\/pre> And you will get Headers already send error. Why ? because the \"super extra character\" has been echoed , and all headers went along with that. Now you start debugging. You may have to waste many hours to find the super extra space.<\/p> Hence make it a habit to omit the closing tag :<\/p> Thats better.<\/p> 7. Collect all output at one place , and output at one shot to the browser This is called output buffering. Lets say you have been echoing content from different functions like this :<\/p> function print_header(){ echo \"Site Log and Login links<\/div>\";}function print_footer(){ echo \"Site was made by me<\/div>\";}print_header();for($i = 0 ; $i < 100; $i++){ echo \"I is : $i ';}print_footer();<\/pre> Instead of doing like that , first collect all output in one place. You can either store it inside variables in the functions or use ob_start and ob_end_clean. So now it should look like<\/p> function print_header(){ $o = \"Site Log and Login links<\/div>\"; return $o;}function print_footer(){ $o = \"Site was made by me<\/div>\"; return $o;}echo print_header();for($i = 0 ; $i < 100; $i++){ echo \"I is : $i ';}echo print_footer();<\/pre> So why should you do output buffering :<\/p> You can change the output just before sending it to browser if you need to. Think about doing some str_replaces , or may be preg_replaces or may be adding some extra html at the end like profiler\/debugger output Its a bad idea to send output to browser and do php processing at the same time. Have you ever seen a website where there is a Fatal error in the sidebar or in a box in the middle of the screen. You know why that happens ? Because processing and output are being mixed. 8. Send correct mime types via header when outputting non-html content Lets echo some xml.<\/p> $xml = '';$xml = \" 0<\/code><\/response>\";\/\/Send xml dataecho $xml;<\/pre> Works fine. But it needs some improvement.<\/p> $xml = '';$xml = \" 0<\/code><\/response>\";\/\/Send xml dataheader(\"content-type: text\/xml\");echo $xml;<\/pre> Note that header line. That line tells the browser that the content is xml content. So the browser can handle it correctly. Many javascript libraries also rely on header information.<\/p> Similarly for javascript , css , jpg image , png image :<\/p> Javascript<\/p> header(\"content-type: application\/x-javascript\");echo \"var a = 10\";<\/pre> CSS<\/p> header(\"content-type: text\/css\");echo \"#div id { background:#000; }\";<\/pre> 9. Set the correct character encoding for a mysql connection Ever faced a problem that unicode\/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation.<\/p> $host = 'localhost';$username = 'root';$password = 'super_secret';\/\/Attempt to connect to database$c = mysqli_connect($host , $username, $password);\t\t\/\/Check connection validityif (!$c) {\tdie (\"Could not connect to the database host: \". mysqli_connect_error());}\t\t\/\/Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){\tdie('mysqli_set_charset() failed');}<\/pre> Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application.<\/p> Otherwise what will happen ? You will see lots of boxes and ???????? in non english text.<\/p> 10. Use htmlentities with the correct characterset option Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc.<\/p> $value = htmlentities($this->value , ENT_QUOTES , 'UTF-8');<\/pre> Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual.<\/p> 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php.<\/p> Use apache mod_gzip\/mod_deflate to compress content via the .htaccess file.<\/p> 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php.<\/p> $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= \"'$image' ,\";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;\/\/Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,];<\/pre> Be smart. use json_encode :<\/p> $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;\/\/Output is : var images = [\"myself.png\",\"friends.png\",\"colleagues.png\"]<\/pre> Isn't that neat ?<\/p> 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of \"debugging\" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on.<\/p> Make sure that your application is as intelligent as possible and reports the most important information in the shortest time.<\/p> $contents = \"All the content\";$file_path = \"\/var\/www\/project\/content.txt\";file_put_contents($file_path , $contents);<\/pre> That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons :<\/p> Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file.<\/p> $contents = \"All the content\";$dir = '\/var\/www\/project';$file_path = $dir . \"\/content.txt\";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die(\"Directory $dir is not writable, or does not exist. Please check\");}<\/pre> By doing this you get the accurate information that where is a file write failing and why<\/p> 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are \"accessible\" outside. Otherwise for example the files may be created by \"php\" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on.<\/p> \/\/ Read and write for owner, read for everybody elsechmod(\"\/somedir\/somefile\", 0644);\/\/ Everything for owner, read and execute for otherschmod(\"\/somedir\/somefile\", 0755);<\/pre> 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ \/\/Save the things}<\/pre> The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this :<\/p> if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ \/\/Save the things}<\/pre> Now you are free from the value the submit button<\/p> 16. Use static variables in function where they always have same value \/\/Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); \t echo \"Delaying for $sync_delay seconds...\"; sleep($sync_delay); echo \"Done \";}<\/pre> Instead use static variables as :<\/p> \/\/Delay for some timefunction delay(){ static $sync_delay = null;\t if($sync_delay == null) {\t$sync_delay = get_option('sync_delay'); }\t echo \"Delaying for $sync_delay seconds...\"; sleep($sync_delay); echo \"Done \";}<\/pre> 17. Don't use the $_SESSION variable directly Some simple examples are :<\/p> $_SESSION['username'] = $username;$username = $_SESSION['username'];<\/pre> But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain.<\/p> Hence use application specific keys with wrapper functions :<\/p> define('APP_ID' , 'abc_corp_ecommerce');\/\/Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}\/\/Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;}<\/pre> 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like :<\/p> function utility_a(){ \/\/This function does a utility thing like string processing}function utility_b(){ \/\/This function does nother utility thing like database processing}function utility_c(){ \/\/This function is ...}<\/pre> And you use the function throughout your application freely. You may want to wrap them into a class as static functions :<\/p> class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}\/\/and call them as $a = Utility::utility_a();$b = Utility::utility_b();<\/pre> One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else.<\/p> 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++;<\/pre> Its absolutely a WASTE.<\/p> Write<\/p> if($a == true){ $a_count++;}<\/pre> Dont try to make your code shorter by eating up syntax. Rather make your logic shorter.<\/p> Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this :<\/p> foreach($arr as $c => $v){\t$arr[$c] = trim($v);}<\/pre> But it can more cleaner with array_map :<\/p> $arr = array_map('trim' , $arr);<\/pre> This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more.<\/p> 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters.<\/p> The php filter extension provides simple way to validate or check values as being a valid 'something'.<\/p> 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate'];<\/pre> Its a good habit.<\/p> 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose<\/p> 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded :<\/p> $db_records_in_array_format; \/\/This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; \/\/2MB moresome_function($cc); \/\/Another 2MB ?<\/pre> The above thing is common when importing a csv file or exporting table to a csv file<\/p> Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays.<\/p> Consider passing them by reference , or storing them in a class variable :<\/p> $a = get_large_array();pass_to_function(&$a);<\/pre> by doing this the same variable (and not its copy) will be available to the function. Check documentation<\/p> class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { \/\/process $this->a }}<\/pre> unset them as soon as possible , so that memory is freed and rest of the script can relax.<\/p> Here is a simple demonstration of how assign by reference can save memory in some cases<\/p> ';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() \/ 1000000 . '';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() \/ 1000000 . '';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() \/ 1000000 . '';<\/pre> The output on a typical php 5.4 machine is :<\/p> Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 <\/p> So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more.<\/p> 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this :<\/p> function add_to_cart(){ $db = new Database(); $db->query(\"INSERT INTO cart .....\");}function empty_cart(){ $db = new Database(); $db->query(\"DELETE FROM cart .....\");}<\/pre> Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory.<\/p> Use the singleton pattern for special cases like database connection.<\/p> 26. Avoid direct SQL query , abstract it $query = \"INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')\";$db->query($query); \/\/call to mysqli_query()<\/pre> The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like:<\/p> All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord<\/p> It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries.<\/p> A very simple example of an activerecord insert function can be like this :<\/p> function insert_record($table_name , $data){ foreach($data as $key => $value) {\t\/\/mysqli_real_escape_string $data[$key] = $db->mres($value); }\t\t $fields = implode(',' , array_keys($data)); $values = \"'\" . implode(\"','\" , array_values($data)) . \"'\"; \/\/Final query\t $query = \"INSERT INTO {$table}($fields) VALUES($values)\";\t\t return $db->query($query);}\/\/data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);\/\/perform the INSERT queryinsert_record('users' , $data);<\/pre> The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse).<\/p> This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise.<\/p> 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again.<\/p> Benefits :<\/p> Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue.<\/p> Storing session in database makes many other things easier like:<\/p> Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines\/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example :<\/p> <\/head> <\/body><\/html><\/pre> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories.<\/p> Lets take an example<\/p> www.domain.com\/store\/home.php www.domain.com\/store\/products\/ipad.php<\/p> In home.php the following can be written :<\/p> Home<\/a>Ipad<\/a><\/pre> But in ipad.php the links have to be like this :<\/p> Home<\/a>Ipad<\/a><\/pre> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag.<\/p> <\/head>Home<\/a>Ipad<\/a><\/body><\/html><\/pre> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products\/ipad.php<\/p> 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing.<\/p> ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT);<\/pre> On production , the display should be disabled.<\/p> ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark.<\/p> After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set.<\/p> ini_set('log_errors' , '1');ini_set('error_log' , '\/path\/to\/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> Note :<\/p> 1. The path '\/path\/to\/errors.txt' should be writable by the web server for errors to be logged there.<\/p> 2. A separate error file is specified , otherwise all logs would go inside the apache\/web server error log and get mixed up with other apache errors.<\/p> 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver).<\/p> 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like \/var\/log dont have to searched.<\/p> 5. Dont set error_reporting to 0. It will not log anything then.<\/p> Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file.<\/p> Set 'display_errors=On' in php.ini on development machine<\/p> On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page.<\/p> Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work.<\/p> Set 'display_errors=Off' in php.ini on production machine<\/p> Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away.<\/p> 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results.<\/p> On a 64 bit machine you can see such output.<\/p> $ php -aInteractive shellphp > echo strtotime(\"0000-00-00 00:00:00\");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600<\/pre> But on a 32 bit machine all of them would give bool(false). Check here for more.<\/p> What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines.<\/p> 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this :<\/p> set_time_limit(30);\/\/Rest of the code<\/pre> It may not always work. Any execution that happens outside the script via system calls\/os functions like socket operations, database operations etc. will not be under control of set_time_limit.<\/p> So if a database operation takes lot of time or \"hangs\" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time.<\/p> 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it.<\/p> A better solution :<\/p> \/**\tMethod to execute a command in the terminal\tUses :\t1. system\t2. passthru\t3. exec\t4. shell_exec*\/function terminal($command){\t\/\/system\tif(function_exists('system'))\t{\t\tob_start();\t\tsystem($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/passthru\telse if(function_exists('passthru'))\t{\t\tob_start();\t\tpassthru($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/exec\telse if(function_exists('exec'))\t{\t\texec($command , $output , $return_var);\t\t$output = implode(\"\\n\" , $output);\t}\t\/\/shell_exec\telse if(function_exists('shell_exec'))\t{\t\t$output = shell_exec($command) ;\t}\telse\t{\t\t$output = 'Command execution not possible on this system';\t\t$return_var = 1;\t}\treturn array('output' => $output , 'status' => $return_var);}terminal('ls');<\/pre> The above function will execute the shell command using whichever function is available , keeping your code consistent.<\/p> 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user.<\/p> 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise.<\/p> Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind.<\/p> 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily.<\/p> Few popular libraries are :<\/p> mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference.<\/p> 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code.<\/p> Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community.<\/p> They contain user feedback, expert advice and useful code snippets. So check them out.<\/p> 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!!<\/p> 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc.<\/p> The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more<\/p> 1. Codeigniter 2. WordPress 3. Joomla CMS<\/p> 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment.<\/p> Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster.<\/p> Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free.<\/p> "} 社區(qū) 文章 合集 問答 學習 課程 編程詞典 工具庫 開發(fā)工具 網(wǎng)站源碼 PHP 庫 JS特效 網(wǎng)站素材 擴展插件 AI工具 休閑 游戲下載 游戲教程 簡體中文 簡體中文 English 繁體中文 日本語 ??? Melayu Fran?ais Deutsch Login singup 首頁 后端開發(fā) php教程 40+ Useful Php tips for beginners ? Part 1 40+ Useful Php tips for beginners ? Part 1 WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB Jun 23, 2016 pm 02:37 PM PHP學習指南 http://www.binarytides.com/category/php-2/tutorial/ In this series we are going to look into some useful tips and techniques that can be used to improve and optimise your php code. Note that these php tips are meant for beginners and not those who are already using mvc frameworks etc. The Techniques 1. Do not use relative paths , instead define a ROOT path Its quite common to see such lines : require_once('http://www.cnblogs.com/lib/some_class.php'); This approach has many drawbacks : It first searches for directories specified in the include paths of php , then looks from the current directory. So many directories are checked. When a script is included by another script in a different directory , its base directory changes to that of the including script. Another issue , is that when a script is being run from cron , it may not have its parent directory as the working directory. So its a good idea to have absolute paths : define('ROOT' , '/var/www/project/');require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code Now this is an absolute path and will always stay constant. But we can improve this further. The directory /var/www/project can change , so do we change it everytime ? No instead we make it portable using magic constants like __FILE__ . Take a closer look : //suppose your script is /var/www/project/index.php//Then __FILE__ will always have that full path.define('ROOT' , pathinfo(__FILE__, PATHINFO_DIRNAME));require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code So now even if you shift your project to a different directory , like moving it to an online server , the same code will run without any changes. 2. Dont use require , include , require_once or include_once Your script could be including various files on top , like class libraries , files for utility and helper functions etc like this : require_once('lib/Database.php');require_once('lib/Mail.php');require_once('helpers/utitlity_functions.php'); This is rather primitive. The code needs to be more flexible. Write up helper functions to include things more easily. Lets take an example : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); require_once( $path ); }load_class('Database');load_class('Mail'); See any difference ? You must. It does not need any more explanation. You can improve this further if you wish to like this : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); if(file_exists($path)) { require_once( $path ); }} There are a lot of things that can be done with this : Search multiple directories for the same class file. Change the directory containing class files easily , without breaking the code anywhere. Use similar functions for loading files that contain helper functions , html content etc. 3. Maintain debugging environment in your application During development we echo database queries , dump variables which are creating problems , and then once the problem is solved , we comment them or erase them. But its a good idea to let everything stay and help in the long run On your development machine you can do this : define('ENVIRONMENT' , 'development');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } And on the server you can do this : define('ENVIRONMENT' , 'production');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } 4. Propagate status messages via session Status messages are those messages that are generated after doing a task. <?phpif($wrong_username || $wrong_password){ $msg = 'Invalid username or password';}?><html><body><?php echo $msg; ?><form>...</form></body></html> Code like that is common. Using variables to show status messages has limitations. They cannot be send via redirects (unless you propagate them as GET variables to the next script , which is very silly). In large scripts there might be multiple messages etc. Best way is to use session to propagate them (even if on same page). For this there has to be a session_start on every page. function set_flash($msg){ $_SESSION['message'] = $msg;}function get_flash(){ $msg = $_SESSION['message']; unset($_SESSION['message']); return $msg;} and in your script : <?phpif($wrong_username || $wrong_password){ set_flash('Invalid username or password');}?><html><body>Status is : <?php echo get_flash(); ?><form>...</form></body></html> 5. Make your functions flexible function add_to_cart($item_id , $qty){ $_SESSION['cart'][$item_id] = $qty;}add_to_cart( 'IPHONE3' , 2 ); When adding a single item you use the above function. When adding multiple items , will you create another function ? NO. Just make the function flexible enough to take different kinds of parameters. Have a closer look : function add_to_cart($item_id , $qty){ if(!is_array($item_id)) { $_SESSION['cart'][$item_id] = $qty; } else { foreach($item_id as $i_id => $qty) { $_SESSION['cart'][$i_id] = $qty; } }}add_to_cart( 'IPHONE3' , 2 );add_to_cart( array('IPHONE3' => 2 , 'IPAD' => 5) ); So now the same function can accept different kinds of output. The above can be applied in lots of places to make your code more agile. 6. Omit the closing php tag if it is the last thing in a script I wonder why this tip is omitted from so many blog posts on php tips. <?phpecho "Hello";//Now dont close this tag This will save you lots of problem. Lets take an example : A class file super_class.php <?phpclass super_class{ function super_function() { //super code }}?>//super extra character after the closing tag Now index.php require_once('super_class.php');//echo an image or pdf , or set the cookies or session data And you will get Headers already send error. Why ? because the "super extra character" has been echoed , and all headers went along with that. Now you start debugging. You may have to waste many hours to find the super extra space. Hence make it a habit to omit the closing tag : <?phpclass super_class{ function super_function() { //super code }}//No closing tag Thats better. 7. Collect all output at one place , and output at one shot to the browser This is called output buffering. Lets say you have been echoing content from different functions like this : function print_header(){ echo "<div id='header'>Site Log and Login links</div>";}function print_footer(){ echo "<div id='footer'>Site was made by me</div>";}print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}print_footer(); Instead of doing like that , first collect all output in one place. You can either store it inside variables in the functions or use ob_start and ob_end_clean. So now it should look like function print_header(){ $o = "<div id='header'>Site Log and Login links</div>"; return $o;}function print_footer(){ $o = "<div id='footer'>Site was made by me</div>"; return $o;}echo print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}echo print_footer(); So why should you do output buffering : You can change the output just before sending it to browser if you need to. Think about doing some str_replaces , or may be preg_replaces or may be adding some extra html at the end like profiler/debugger output Its a bad idea to send output to browser and do php processing at the same time. Have you ever seen a website where there is a Fatal error in the sidebar or in a box in the middle of the screen. You know why that happens ? Because processing and output are being mixed. 8. Send correct mime types via header when outputting non-html content Lets echo some xml. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataecho $xml; Works fine. But it needs some improvement. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataheader("content-type: text/xml");echo $xml; Note that header line. That line tells the browser that the content is xml content. So the browser can handle it correctly. Many javascript libraries also rely on header information. Similarly for javascript , css , jpg image , png image : Javascript header("content-type: application/x-javascript");echo "var a = 10"; CSS header("content-type: text/css");echo "#div id { background:#000; }"; 9. Set the correct character encoding for a mysql connection Ever faced a problem that unicode/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation. $host = 'localhost';$username = 'root';$password = 'super_secret';//Attempt to connect to database$c = mysqli_connect($host , $username, $password); //Check connection validityif (!$c) { die ("Could not connect to the database host: <br />". mysqli_connect_error());} //Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){ die('mysqli_set_charset() failed');} Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application. Otherwise what will happen ? You will see lots of boxes and ???????? in non english text. 10. Use htmlentities with the correct characterset option Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc. $value = htmlentities($this->value , ENT_QUOTES , 'UTF-8'); Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual. 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php. Use apache mod_gzip/mod_deflate to compress content via the .htaccess file. 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php. $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= "'$image' ,";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;//Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,]; Be smart. use json_encode : $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;//Output is : var images = ["myself.png","friends.png","colleagues.png"] Isn't that neat ? 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of "debugging" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on. Make sure that your application is as intelligent as possible and reports the most important information in the shortest time. $contents = "All the content";$file_path = "/var/www/project/content.txt";file_put_contents($file_path , $contents); That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons : Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file. $contents = "All the content";$dir = '/var/www/project';$file_path = $dir . "/content.txt";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die("Directory $dir is not writable, or does not exist. Please check");} By doing this you get the accurate information that where is a file write failing and why 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are "accessible" outside. Otherwise for example the files may be created by "php" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on. // Read and write for owner, read for everybody elsechmod("/somedir/somefile", 0644);// Everything for owner, read and execute for otherschmod("/somedir/somefile", 0755); 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ //Save the things} The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this : if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ //Save the things} Now you are free from the value the submit button 16. Use static variables in function where they always have same value //Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} Instead use static variables as : //Delay for some timefunction delay(){ static $sync_delay = null; if($sync_delay == null) { $sync_delay = get_option('sync_delay'); } echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} 17. Don't use the $_SESSION variable directly Some simple examples are : $_SESSION['username'] = $username;$username = $_SESSION['username']; But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain. Hence use application specific keys with wrapper functions : define('APP_ID' , 'abc_corp_ecommerce');//Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}//Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;} 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like : function utility_a(){ //This function does a utility thing like string processing}function utility_b(){ //This function does nother utility thing like database processing}function utility_c(){ //This function is ...} And you use the function throughout your application freely. You may want to wrap them into a class as static functions : class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}//and call them as $a = Utility::utility_a();$b = Utility::utility_b(); One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else. 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++; Its absolutely a WASTE. Write if($a == true){ $a_count++;} Dont try to make your code shorter by eating up syntax. Rather make your logic shorter. Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this : foreach($arr as $c => $v){ $arr[$c] = trim($v);} But it can more cleaner with array_map : $arr = array_map('trim' , $arr); This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more. 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters. The php filter extension provides simple way to validate or check values as being a valid 'something'. 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate']; Its a good habit. 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded : $db_records_in_array_format; //This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; //2MB moresome_function($cc); //Another 2MB ? The above thing is common when importing a csv file or exporting table to a csv file Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays. Consider passing them by reference , or storing them in a class variable : $a = get_large_array();pass_to_function(&$a); by doing this the same variable (and not its copy) will be available to the function. Check documentation class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { //process $this->a }} unset them as soon as possible , so that memory is freed and rest of the script can relax. Here is a simple demonstration of how assign by reference can save memory in some cases <?phpini_set('display_errors' , true);error_reporting(E_ALL);$a = array();for($i = 0; $i < 100000 ; $i++){ $a[$i] = 'A'.$i;}echo 'Memory usage in MB : '. memory_get_usage() / 1000000 . '<br />';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() / 1000000 . '<br />';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() / 1000000 . '<br />';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() / 1000000 . '<br />'; The output on a typical php 5.4 machine is : Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more. 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this : function add_to_cart(){ $db = new Database(); $db->query("INSERT INTO cart .....");}function empty_cart(){ $db = new Database(); $db->query("DELETE FROM cart .....");} Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory. Use the singleton pattern for special cases like database connection. 26. Avoid direct SQL query , abstract it $query = "INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')";$db->query($query); //call to mysqli_query() The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like: All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries. A very simple example of an activerecord insert function can be like this : function insert_record($table_name , $data){ foreach($data as $key => $value) { //mysqli_real_escape_string $data[$key] = $db->mres($value); } $fields = implode(',' , array_keys($data)); $values = "'" . implode("','" , array_values($data)) . "'"; //Final query $query = "INSERT INTO {$table}($fields) VALUES($values)"; return $db->query($query);}//data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);//perform the INSERT queryinsert_record('users' , $data); The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse). This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise. 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again. Benefits : Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue. Storing session in database makes many other things easier like: Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example : <head> <base href="http://www.domain.com/store/"></head><body> <img src="/static/imghw/default1.png" data-src="happy.jpg" class="lazy" / alt="40+ Useful Php tips for beginners ? Part 1" ></body></html> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories. Lets take an example www.domain.com/store/home.php www.domain.com/store/products/ipad.php In home.php the following can be written : <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> But in ipad.php the links have to be like this : <a href="../home.php">Home</a><a href="ipad.php">Ipad</a> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag. <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products/ipad.php 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing. ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT); On production , the display should be disabled. ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark. After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set. ini_set('log_errors' , '1');ini_set('error_log' , '/path/to/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); Note : 1. The path '/path/to/errors.txt' should be writable by the web server for errors to be logged there. 2. A separate error file is specified , otherwise all logs would go inside the apache/web server error log and get mixed up with other apache errors. 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver). 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like /var/log dont have to searched. 5. Dont set error_reporting to 0. It will not log anything then. Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file. Set 'display_errors=On' in php.ini on development machine On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page. Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work. Set 'display_errors=Off' in php.ini on production machine Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away. 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results. On a 64 bit machine you can see such output. $ php -aInteractive shellphp > echo strtotime("0000-00-00 00:00:00");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600 But on a 32 bit machine all of them would give bool(false). Check here for more. What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines. 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this : set_time_limit(30);//Rest of the code It may not always work. Any execution that happens outside the script via system calls/os functions like socket operations, database operations etc. will not be under control of set_time_limit. So if a database operation takes lot of time or "hangs" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time. 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it. A better solution : /** Method to execute a command in the terminal Uses : 1. system 2. passthru 3. exec 4. shell_exec*/function terminal($command){ //system if(function_exists('system')) { ob_start(); system($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //passthru else if(function_exists('passthru')) { ob_start(); passthru($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //exec else if(function_exists('exec')) { exec($command , $output , $return_var); $output = implode("\n" , $output); } //shell_exec else if(function_exists('shell_exec')) { $output = shell_exec($command) ; } else { $output = 'Command execution not possible on this system'; $return_var = 1; } return array('output' => $output , 'status' => $return_var);}terminal('ls'); The above function will execute the shell command using whichever function is available , keeping your code consistent. 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user. 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise. Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind. 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily. Few popular libraries are : mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference. 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code. Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community. They contain user feedback, expert advice and useful code snippets. So check them out. 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!! 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc. The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more 1. Codeigniter 2. WordPress 3. Joomla CMS 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment. Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster. Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free. 本站聲明 本文內(nèi)容由網(wǎng)友自發(fā)貢獻,版權(quán)歸原作者所有,本站不承擔相應(yīng)法律責任。如您發(fā)現(xiàn)有涉嫌抄襲侵權(quán)的內(nèi)容,請聯(lián)系admin@php.cn 熱AI工具 Undress AI Tool 免費脫衣服圖片 Undresser.AI Undress 人工智能驅(qū)動的應(yīng)用程序,用于創(chuàng)建逼真的裸體照片 AI Clothes Remover 用于從照片中去除衣服的在線人工智能工具。 Clothoff.io AI脫衣機 Video Face Swap 使用我們完全免費的人工智能換臉工具輕松在任何視頻中換臉! 顯示更多 熱門文章 指南:恒星刀片保存文件位置/保存文件丟失/不保存 4 周前 By DDD Oguri Cap Build Guide |漂亮的德比志 2 周前 By Jack chen Agnes Tachyon Build Guide |漂亮的德比志 1 周前 By Jack chen 沙丘:覺醒 - 高級行星學家Quest演練 4 周前 By Jack chen 約會一切:德克和哈珀關(guān)系指南 4 周前 By Jack chen 顯示更多 熱工具 記事本++7.3.1 好用且免費的代碼編輯器 SublimeText3漢化版 中文版,非常好用 禪工作室 13.0.1 功能強大的PHP集成開發(fā)環(huán)境 Dreamweaver CS6 視覺化網(wǎng)頁開發(fā)工具 SublimeText3 Mac版 神級代碼編輯軟件(SublimeText3) 顯示更多 熱門話題 gmail郵箱登陸入口在哪里 8638 17 Java教程 1783 16 CakePHP 教程 1728 56 Laravel 教程 1578 28 PHP教程 1442 31 顯示更多 Related knowledge 如何在PHP中實施身份驗證和授權(quán)? Jun 20, 2025 am 01:03 AM tosecurelyhandleauthenticationandationallizationInphp,lofterTheSesteps:1.AlwaysHashPasswordSwithPassword_hash()andverifyusingspasspassword_verify(),usepreparedStatatementStopreventsqlineptions,andStoreSeruserDatain usseruserDatain $ _sessiveferterlogin.2.implementrole-2.imaccessccsccccccccccccccccccccccccc. 如何在PHP中安全地處理文件上傳? Jun 19, 2025 am 01:05 AM 要安全處理PHP中的文件上傳,核心在于驗證文件類型、重命名文件并限制權(quán)限。1.使用finfo_file()檢查真實MIME類型,僅允許特定類型如image/jpeg;2.用uniqid()生成隨機文件名,存儲至非Web根目錄;3.通過php.ini和HTML表單限制文件大小,設(shè)置目錄權(quán)限為0755;4.使用ClamAV掃描惡意軟件,增強安全性。這些步驟有效防止安全漏洞,確保文件上傳過程安全可靠。 PHP中==(松散比較)和===(嚴格的比較)之間有什么區(qū)別? Jun 19, 2025 am 01:07 AM 在PHP中,==與===的主要區(qū)別在于類型檢查的嚴格程度。==在比較前會進行類型轉(zhuǎn)換,例如5=="5"返回true,而===要求值和類型都相同才會返回true,例如5==="5"返回false。使用場景上,===更安全應(yīng)優(yōu)先使用,==僅在需要類型轉(zhuǎn)換時使用。 如何在PHP( - , *, /,%)中執(zhí)行算術(shù)操作? Jun 19, 2025 pm 05:13 PM PHP中使用基本數(shù)學運算的方法如下:1.加法用 號,支持整數(shù)和浮點數(shù),也可用于變量,字符串數(shù)字會自動轉(zhuǎn)換但不推薦依賴;2.減法用-號,變量同理,類型轉(zhuǎn)換同樣適用;3.乘法用*號,適用于數(shù)字及類似字符串;4.除法用/號,需避免除以零,并注意結(jié)果可能是浮點數(shù);5.取模用%號,可用于判斷奇偶數(shù),處理負數(shù)時余數(shù)符號與被除數(shù)一致。正確使用這些運算符的關(guān)鍵在于確保數(shù)據(jù)類型清晰并處理好邊界情況。 如何與PHP的NOSQL數(shù)據(jù)庫(例如MongoDB,Redis)進行交互? Jun 19, 2025 am 01:07 AM 是的,PHP可以通過特定擴展或庫與MongoDB和Redis等NoSQL數(shù)據(jù)庫交互。首先,使用MongoDBPHP驅(qū)動(通過PECL或Composer安裝)創(chuàng)建客戶端實例并操作數(shù)據(jù)庫及集合,支持插入、查詢、聚合等操作;其次,使用Predis庫或phpredis擴展連接Redis,執(zhí)行鍵值設(shè)置與獲取,推薦phpredis用于高性能場景,Predis則便于快速部署;兩者均適用于生產(chǎn)環(huán)境且文檔完善。 我如何了解最新的PHP開發(fā)和最佳實踐? Jun 23, 2025 am 12:56 AM TostaycurrentwithPHPdevelopmentsandbestpractices,followkeynewssourceslikePHP.netandPHPWeekly,engagewithcommunitiesonforumsandconferences,keeptoolingupdatedandgraduallyadoptnewfeatures,andreadorcontributetoopensourceprojects.First,followreliablesource 什么是PHP,為什么它用于Web開發(fā)? Jun 23, 2025 am 12:55 AM PHPbecamepopularforwebdevelopmentduetoitseaseoflearning,seamlessintegrationwithHTML,widespreadhostingsupport,andalargeecosystemincludingframeworkslikeLaravelandCMSplatformslikeWordPress.Itexcelsinhandlingformsubmissions,managingusersessions,interacti 如何設(shè)置PHP時區(qū)? Jun 25, 2025 am 01:00 AM tosetTherightTimeZoneInphp,restate_default_timezone_set()functionAtthestArtofyourscriptWithavalIdidentIdentifiersuchas'america/new_york'.1.usedate_default_default_timezone_set_set() See all articles
So now the same function can accept different kinds of output. The above can be applied in lots of places to make your code more agile.<\/p> 6. Omit the closing php tag if it is the last thing in a script
I wonder why this tip is omitted from so many blog posts on php tips.<\/p>
This will save you lots of problem. Lets take an example :<\/p> A class file super_class.php<\/p> \/\/super extra character after the closing tag<\/pre> Now index.php<\/p> require_once('super_class.php');\/\/echo an image or pdf , or set the cookies or session data<\/pre> And you will get Headers already send error. Why ? because the \"super extra character\" has been echoed , and all headers went along with that. Now you start debugging. You may have to waste many hours to find the super extra space.<\/p> Hence make it a habit to omit the closing tag :<\/p> Thats better.<\/p> 7. Collect all output at one place , and output at one shot to the browser This is called output buffering. Lets say you have been echoing content from different functions like this :<\/p> function print_header(){ echo \"Site Log and Login links<\/div>\";}function print_footer(){ echo \"Site was made by me<\/div>\";}print_header();for($i = 0 ; $i < 100; $i++){ echo \"I is : $i ';}print_footer();<\/pre> Instead of doing like that , first collect all output in one place. You can either store it inside variables in the functions or use ob_start and ob_end_clean. So now it should look like<\/p> function print_header(){ $o = \"Site Log and Login links<\/div>\"; return $o;}function print_footer(){ $o = \"Site was made by me<\/div>\"; return $o;}echo print_header();for($i = 0 ; $i < 100; $i++){ echo \"I is : $i ';}echo print_footer();<\/pre> So why should you do output buffering :<\/p> You can change the output just before sending it to browser if you need to. Think about doing some str_replaces , or may be preg_replaces or may be adding some extra html at the end like profiler\/debugger output Its a bad idea to send output to browser and do php processing at the same time. Have you ever seen a website where there is a Fatal error in the sidebar or in a box in the middle of the screen. You know why that happens ? Because processing and output are being mixed. 8. Send correct mime types via header when outputting non-html content Lets echo some xml.<\/p> $xml = '';$xml = \" 0<\/code><\/response>\";\/\/Send xml dataecho $xml;<\/pre> Works fine. But it needs some improvement.<\/p> $xml = '';$xml = \" 0<\/code><\/response>\";\/\/Send xml dataheader(\"content-type: text\/xml\");echo $xml;<\/pre> Note that header line. That line tells the browser that the content is xml content. So the browser can handle it correctly. Many javascript libraries also rely on header information.<\/p> Similarly for javascript , css , jpg image , png image :<\/p> Javascript<\/p> header(\"content-type: application\/x-javascript\");echo \"var a = 10\";<\/pre> CSS<\/p> header(\"content-type: text\/css\");echo \"#div id { background:#000; }\";<\/pre> 9. Set the correct character encoding for a mysql connection Ever faced a problem that unicode\/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation.<\/p> $host = 'localhost';$username = 'root';$password = 'super_secret';\/\/Attempt to connect to database$c = mysqli_connect($host , $username, $password);\t\t\/\/Check connection validityif (!$c) {\tdie (\"Could not connect to the database host: \". mysqli_connect_error());}\t\t\/\/Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){\tdie('mysqli_set_charset() failed');}<\/pre> Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application.<\/p> Otherwise what will happen ? You will see lots of boxes and ???????? in non english text.<\/p> 10. Use htmlentities with the correct characterset option Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc.<\/p> $value = htmlentities($this->value , ENT_QUOTES , 'UTF-8');<\/pre> Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual.<\/p> 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php.<\/p> Use apache mod_gzip\/mod_deflate to compress content via the .htaccess file.<\/p> 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php.<\/p> $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= \"'$image' ,\";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;\/\/Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,];<\/pre> Be smart. use json_encode :<\/p> $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;\/\/Output is : var images = [\"myself.png\",\"friends.png\",\"colleagues.png\"]<\/pre> Isn't that neat ?<\/p> 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of \"debugging\" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on.<\/p> Make sure that your application is as intelligent as possible and reports the most important information in the shortest time.<\/p> $contents = \"All the content\";$file_path = \"\/var\/www\/project\/content.txt\";file_put_contents($file_path , $contents);<\/pre> That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons :<\/p> Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file.<\/p> $contents = \"All the content\";$dir = '\/var\/www\/project';$file_path = $dir . \"\/content.txt\";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die(\"Directory $dir is not writable, or does not exist. Please check\");}<\/pre> By doing this you get the accurate information that where is a file write failing and why<\/p> 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are \"accessible\" outside. Otherwise for example the files may be created by \"php\" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on.<\/p> \/\/ Read and write for owner, read for everybody elsechmod(\"\/somedir\/somefile\", 0644);\/\/ Everything for owner, read and execute for otherschmod(\"\/somedir\/somefile\", 0755);<\/pre> 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ \/\/Save the things}<\/pre> The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this :<\/p> if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ \/\/Save the things}<\/pre> Now you are free from the value the submit button<\/p> 16. Use static variables in function where they always have same value \/\/Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); \t echo \"Delaying for $sync_delay seconds...\"; sleep($sync_delay); echo \"Done \";}<\/pre> Instead use static variables as :<\/p> \/\/Delay for some timefunction delay(){ static $sync_delay = null;\t if($sync_delay == null) {\t$sync_delay = get_option('sync_delay'); }\t echo \"Delaying for $sync_delay seconds...\"; sleep($sync_delay); echo \"Done \";}<\/pre> 17. Don't use the $_SESSION variable directly Some simple examples are :<\/p> $_SESSION['username'] = $username;$username = $_SESSION['username'];<\/pre> But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain.<\/p> Hence use application specific keys with wrapper functions :<\/p> define('APP_ID' , 'abc_corp_ecommerce');\/\/Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}\/\/Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;}<\/pre> 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like :<\/p> function utility_a(){ \/\/This function does a utility thing like string processing}function utility_b(){ \/\/This function does nother utility thing like database processing}function utility_c(){ \/\/This function is ...}<\/pre> And you use the function throughout your application freely. You may want to wrap them into a class as static functions :<\/p> class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}\/\/and call them as $a = Utility::utility_a();$b = Utility::utility_b();<\/pre> One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else.<\/p> 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++;<\/pre> Its absolutely a WASTE.<\/p> Write<\/p> if($a == true){ $a_count++;}<\/pre> Dont try to make your code shorter by eating up syntax. Rather make your logic shorter.<\/p> Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this :<\/p> foreach($arr as $c => $v){\t$arr[$c] = trim($v);}<\/pre> But it can more cleaner with array_map :<\/p> $arr = array_map('trim' , $arr);<\/pre> This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more.<\/p> 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters.<\/p> The php filter extension provides simple way to validate or check values as being a valid 'something'.<\/p> 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate'];<\/pre> Its a good habit.<\/p> 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose<\/p> 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded :<\/p> $db_records_in_array_format; \/\/This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; \/\/2MB moresome_function($cc); \/\/Another 2MB ?<\/pre> The above thing is common when importing a csv file or exporting table to a csv file<\/p> Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays.<\/p> Consider passing them by reference , or storing them in a class variable :<\/p> $a = get_large_array();pass_to_function(&$a);<\/pre> by doing this the same variable (and not its copy) will be available to the function. Check documentation<\/p> class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { \/\/process $this->a }}<\/pre> unset them as soon as possible , so that memory is freed and rest of the script can relax.<\/p> Here is a simple demonstration of how assign by reference can save memory in some cases<\/p> ';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() \/ 1000000 . '';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() \/ 1000000 . '';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() \/ 1000000 . '';<\/pre> The output on a typical php 5.4 machine is :<\/p> Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 <\/p> So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more.<\/p> 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this :<\/p> function add_to_cart(){ $db = new Database(); $db->query(\"INSERT INTO cart .....\");}function empty_cart(){ $db = new Database(); $db->query(\"DELETE FROM cart .....\");}<\/pre> Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory.<\/p> Use the singleton pattern for special cases like database connection.<\/p> 26. Avoid direct SQL query , abstract it $query = \"INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')\";$db->query($query); \/\/call to mysqli_query()<\/pre> The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like:<\/p> All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord<\/p> It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries.<\/p> A very simple example of an activerecord insert function can be like this :<\/p> function insert_record($table_name , $data){ foreach($data as $key => $value) {\t\/\/mysqli_real_escape_string $data[$key] = $db->mres($value); }\t\t $fields = implode(',' , array_keys($data)); $values = \"'\" . implode(\"','\" , array_values($data)) . \"'\"; \/\/Final query\t $query = \"INSERT INTO {$table}($fields) VALUES($values)\";\t\t return $db->query($query);}\/\/data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);\/\/perform the INSERT queryinsert_record('users' , $data);<\/pre> The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse).<\/p> This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise.<\/p> 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again.<\/p> Benefits :<\/p> Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue.<\/p> Storing session in database makes many other things easier like:<\/p> Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines\/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example :<\/p> <\/head> <\/body><\/html><\/pre> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories.<\/p> Lets take an example<\/p> www.domain.com\/store\/home.php www.domain.com\/store\/products\/ipad.php<\/p> In home.php the following can be written :<\/p> Home<\/a>Ipad<\/a><\/pre> But in ipad.php the links have to be like this :<\/p> Home<\/a>Ipad<\/a><\/pre> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag.<\/p> <\/head>Home<\/a>Ipad<\/a><\/body><\/html><\/pre> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products\/ipad.php<\/p> 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing.<\/p> ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT);<\/pre> On production , the display should be disabled.<\/p> ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark.<\/p> After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set.<\/p> ini_set('log_errors' , '1');ini_set('error_log' , '\/path\/to\/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> Note :<\/p> 1. The path '\/path\/to\/errors.txt' should be writable by the web server for errors to be logged there.<\/p> 2. A separate error file is specified , otherwise all logs would go inside the apache\/web server error log and get mixed up with other apache errors.<\/p> 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver).<\/p> 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like \/var\/log dont have to searched.<\/p> 5. Dont set error_reporting to 0. It will not log anything then.<\/p> Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file.<\/p> Set 'display_errors=On' in php.ini on development machine<\/p> On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page.<\/p> Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work.<\/p> Set 'display_errors=Off' in php.ini on production machine<\/p> Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away.<\/p> 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results.<\/p> On a 64 bit machine you can see such output.<\/p> $ php -aInteractive shellphp > echo strtotime(\"0000-00-00 00:00:00\");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600<\/pre> But on a 32 bit machine all of them would give bool(false). Check here for more.<\/p> What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines.<\/p> 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this :<\/p> set_time_limit(30);\/\/Rest of the code<\/pre> It may not always work. Any execution that happens outside the script via system calls\/os functions like socket operations, database operations etc. will not be under control of set_time_limit.<\/p> So if a database operation takes lot of time or \"hangs\" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time.<\/p> 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it.<\/p> A better solution :<\/p> \/**\tMethod to execute a command in the terminal\tUses :\t1. system\t2. passthru\t3. exec\t4. shell_exec*\/function terminal($command){\t\/\/system\tif(function_exists('system'))\t{\t\tob_start();\t\tsystem($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/passthru\telse if(function_exists('passthru'))\t{\t\tob_start();\t\tpassthru($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/exec\telse if(function_exists('exec'))\t{\t\texec($command , $output , $return_var);\t\t$output = implode(\"\\n\" , $output);\t}\t\/\/shell_exec\telse if(function_exists('shell_exec'))\t{\t\t$output = shell_exec($command) ;\t}\telse\t{\t\t$output = 'Command execution not possible on this system';\t\t$return_var = 1;\t}\treturn array('output' => $output , 'status' => $return_var);}terminal('ls');<\/pre> The above function will execute the shell command using whichever function is available , keeping your code consistent.<\/p> 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user.<\/p> 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise.<\/p> Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind.<\/p> 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily.<\/p> Few popular libraries are :<\/p> mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference.<\/p> 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code.<\/p> Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community.<\/p> They contain user feedback, expert advice and useful code snippets. So check them out.<\/p> 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!!<\/p> 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc.<\/p> The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more<\/p> 1. Codeigniter 2. WordPress 3. Joomla CMS<\/p> 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment.<\/p> Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster.<\/p> Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free.<\/p> "} 社區(qū) 文章 合集 問答 學習 課程 編程詞典 工具庫 開發(fā)工具 網(wǎng)站源碼 PHP 庫 JS特效 網(wǎng)站素材 擴展插件 AI工具 休閑 游戲下載 游戲教程 簡體中文 簡體中文 English 繁體中文 日本語 ??? Melayu Fran?ais Deutsch Login singup 首頁 后端開發(fā) php教程 40+ Useful Php tips for beginners ? Part 1 40+ Useful Php tips for beginners ? Part 1 WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB Jun 23, 2016 pm 02:37 PM PHP學習指南 http://www.binarytides.com/category/php-2/tutorial/ In this series we are going to look into some useful tips and techniques that can be used to improve and optimise your php code. Note that these php tips are meant for beginners and not those who are already using mvc frameworks etc. The Techniques 1. Do not use relative paths , instead define a ROOT path Its quite common to see such lines : require_once('http://www.cnblogs.com/lib/some_class.php'); This approach has many drawbacks : It first searches for directories specified in the include paths of php , then looks from the current directory. So many directories are checked. When a script is included by another script in a different directory , its base directory changes to that of the including script. Another issue , is that when a script is being run from cron , it may not have its parent directory as the working directory. So its a good idea to have absolute paths : define('ROOT' , '/var/www/project/');require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code Now this is an absolute path and will always stay constant. But we can improve this further. The directory /var/www/project can change , so do we change it everytime ? No instead we make it portable using magic constants like __FILE__ . Take a closer look : //suppose your script is /var/www/project/index.php//Then __FILE__ will always have that full path.define('ROOT' , pathinfo(__FILE__, PATHINFO_DIRNAME));require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code So now even if you shift your project to a different directory , like moving it to an online server , the same code will run without any changes. 2. Dont use require , include , require_once or include_once Your script could be including various files on top , like class libraries , files for utility and helper functions etc like this : require_once('lib/Database.php');require_once('lib/Mail.php');require_once('helpers/utitlity_functions.php'); This is rather primitive. The code needs to be more flexible. Write up helper functions to include things more easily. Lets take an example : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); require_once( $path ); }load_class('Database');load_class('Mail'); See any difference ? You must. It does not need any more explanation. You can improve this further if you wish to like this : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); if(file_exists($path)) { require_once( $path ); }} There are a lot of things that can be done with this : Search multiple directories for the same class file. Change the directory containing class files easily , without breaking the code anywhere. Use similar functions for loading files that contain helper functions , html content etc. 3. Maintain debugging environment in your application During development we echo database queries , dump variables which are creating problems , and then once the problem is solved , we comment them or erase them. But its a good idea to let everything stay and help in the long run On your development machine you can do this : define('ENVIRONMENT' , 'development');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } And on the server you can do this : define('ENVIRONMENT' , 'production');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } 4. Propagate status messages via session Status messages are those messages that are generated after doing a task. <?phpif($wrong_username || $wrong_password){ $msg = 'Invalid username or password';}?><html><body><?php echo $msg; ?><form>...</form></body></html> Code like that is common. Using variables to show status messages has limitations. They cannot be send via redirects (unless you propagate them as GET variables to the next script , which is very silly). In large scripts there might be multiple messages etc. Best way is to use session to propagate them (even if on same page). For this there has to be a session_start on every page. function set_flash($msg){ $_SESSION['message'] = $msg;}function get_flash(){ $msg = $_SESSION['message']; unset($_SESSION['message']); return $msg;} and in your script : <?phpif($wrong_username || $wrong_password){ set_flash('Invalid username or password');}?><html><body>Status is : <?php echo get_flash(); ?><form>...</form></body></html> 5. Make your functions flexible function add_to_cart($item_id , $qty){ $_SESSION['cart'][$item_id] = $qty;}add_to_cart( 'IPHONE3' , 2 ); When adding a single item you use the above function. When adding multiple items , will you create another function ? NO. Just make the function flexible enough to take different kinds of parameters. Have a closer look : function add_to_cart($item_id , $qty){ if(!is_array($item_id)) { $_SESSION['cart'][$item_id] = $qty; } else { foreach($item_id as $i_id => $qty) { $_SESSION['cart'][$i_id] = $qty; } }}add_to_cart( 'IPHONE3' , 2 );add_to_cart( array('IPHONE3' => 2 , 'IPAD' => 5) ); So now the same function can accept different kinds of output. The above can be applied in lots of places to make your code more agile. 6. Omit the closing php tag if it is the last thing in a script I wonder why this tip is omitted from so many blog posts on php tips. <?phpecho "Hello";//Now dont close this tag This will save you lots of problem. Lets take an example : A class file super_class.php <?phpclass super_class{ function super_function() { //super code }}?>//super extra character after the closing tag Now index.php require_once('super_class.php');//echo an image or pdf , or set the cookies or session data And you will get Headers already send error. Why ? because the "super extra character" has been echoed , and all headers went along with that. Now you start debugging. You may have to waste many hours to find the super extra space. Hence make it a habit to omit the closing tag : <?phpclass super_class{ function super_function() { //super code }}//No closing tag Thats better. 7. Collect all output at one place , and output at one shot to the browser This is called output buffering. Lets say you have been echoing content from different functions like this : function print_header(){ echo "<div id='header'>Site Log and Login links</div>";}function print_footer(){ echo "<div id='footer'>Site was made by me</div>";}print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}print_footer(); Instead of doing like that , first collect all output in one place. You can either store it inside variables in the functions or use ob_start and ob_end_clean. So now it should look like function print_header(){ $o = "<div id='header'>Site Log and Login links</div>"; return $o;}function print_footer(){ $o = "<div id='footer'>Site was made by me</div>"; return $o;}echo print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}echo print_footer(); So why should you do output buffering : You can change the output just before sending it to browser if you need to. Think about doing some str_replaces , or may be preg_replaces or may be adding some extra html at the end like profiler/debugger output Its a bad idea to send output to browser and do php processing at the same time. Have you ever seen a website where there is a Fatal error in the sidebar or in a box in the middle of the screen. You know why that happens ? Because processing and output are being mixed. 8. Send correct mime types via header when outputting non-html content Lets echo some xml. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataecho $xml; Works fine. But it needs some improvement. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataheader("content-type: text/xml");echo $xml; Note that header line. That line tells the browser that the content is xml content. So the browser can handle it correctly. Many javascript libraries also rely on header information. Similarly for javascript , css , jpg image , png image : Javascript header("content-type: application/x-javascript");echo "var a = 10"; CSS header("content-type: text/css");echo "#div id { background:#000; }"; 9. Set the correct character encoding for a mysql connection Ever faced a problem that unicode/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation. $host = 'localhost';$username = 'root';$password = 'super_secret';//Attempt to connect to database$c = mysqli_connect($host , $username, $password); //Check connection validityif (!$c) { die ("Could not connect to the database host: <br />". mysqli_connect_error());} //Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){ die('mysqli_set_charset() failed');} Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application. Otherwise what will happen ? You will see lots of boxes and ???????? in non english text. 10. Use htmlentities with the correct characterset option Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc. $value = htmlentities($this->value , ENT_QUOTES , 'UTF-8'); Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual. 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php. Use apache mod_gzip/mod_deflate to compress content via the .htaccess file. 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php. $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= "'$image' ,";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;//Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,]; Be smart. use json_encode : $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;//Output is : var images = ["myself.png","friends.png","colleagues.png"] Isn't that neat ? 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of "debugging" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on. Make sure that your application is as intelligent as possible and reports the most important information in the shortest time. $contents = "All the content";$file_path = "/var/www/project/content.txt";file_put_contents($file_path , $contents); That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons : Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file. $contents = "All the content";$dir = '/var/www/project';$file_path = $dir . "/content.txt";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die("Directory $dir is not writable, or does not exist. Please check");} By doing this you get the accurate information that where is a file write failing and why 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are "accessible" outside. Otherwise for example the files may be created by "php" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on. // Read and write for owner, read for everybody elsechmod("/somedir/somefile", 0644);// Everything for owner, read and execute for otherschmod("/somedir/somefile", 0755); 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ //Save the things} The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this : if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ //Save the things} Now you are free from the value the submit button 16. Use static variables in function where they always have same value //Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} Instead use static variables as : //Delay for some timefunction delay(){ static $sync_delay = null; if($sync_delay == null) { $sync_delay = get_option('sync_delay'); } echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} 17. Don't use the $_SESSION variable directly Some simple examples are : $_SESSION['username'] = $username;$username = $_SESSION['username']; But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain. Hence use application specific keys with wrapper functions : define('APP_ID' , 'abc_corp_ecommerce');//Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}//Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;} 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like : function utility_a(){ //This function does a utility thing like string processing}function utility_b(){ //This function does nother utility thing like database processing}function utility_c(){ //This function is ...} And you use the function throughout your application freely. You may want to wrap them into a class as static functions : class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}//and call them as $a = Utility::utility_a();$b = Utility::utility_b(); One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else. 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++; Its absolutely a WASTE. Write if($a == true){ $a_count++;} Dont try to make your code shorter by eating up syntax. Rather make your logic shorter. Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this : foreach($arr as $c => $v){ $arr[$c] = trim($v);} But it can more cleaner with array_map : $arr = array_map('trim' , $arr); This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more. 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters. The php filter extension provides simple way to validate or check values as being a valid 'something'. 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate']; Its a good habit. 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded : $db_records_in_array_format; //This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; //2MB moresome_function($cc); //Another 2MB ? The above thing is common when importing a csv file or exporting table to a csv file Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays. Consider passing them by reference , or storing them in a class variable : $a = get_large_array();pass_to_function(&$a); by doing this the same variable (and not its copy) will be available to the function. Check documentation class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { //process $this->a }} unset them as soon as possible , so that memory is freed and rest of the script can relax. Here is a simple demonstration of how assign by reference can save memory in some cases <?phpini_set('display_errors' , true);error_reporting(E_ALL);$a = array();for($i = 0; $i < 100000 ; $i++){ $a[$i] = 'A'.$i;}echo 'Memory usage in MB : '. memory_get_usage() / 1000000 . '<br />';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() / 1000000 . '<br />';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() / 1000000 . '<br />';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() / 1000000 . '<br />'; The output on a typical php 5.4 machine is : Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more. 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this : function add_to_cart(){ $db = new Database(); $db->query("INSERT INTO cart .....");}function empty_cart(){ $db = new Database(); $db->query("DELETE FROM cart .....");} Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory. Use the singleton pattern for special cases like database connection. 26. Avoid direct SQL query , abstract it $query = "INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')";$db->query($query); //call to mysqli_query() The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like: All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries. A very simple example of an activerecord insert function can be like this : function insert_record($table_name , $data){ foreach($data as $key => $value) { //mysqli_real_escape_string $data[$key] = $db->mres($value); } $fields = implode(',' , array_keys($data)); $values = "'" . implode("','" , array_values($data)) . "'"; //Final query $query = "INSERT INTO {$table}($fields) VALUES($values)"; return $db->query($query);}//data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);//perform the INSERT queryinsert_record('users' , $data); The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse). This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise. 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again. Benefits : Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue. Storing session in database makes many other things easier like: Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example : <head> <base href="http://www.domain.com/store/"></head><body> <img src="/static/imghw/default1.png" data-src="happy.jpg" class="lazy" / alt="40+ Useful Php tips for beginners ? Part 1" ></body></html> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories. Lets take an example www.domain.com/store/home.php www.domain.com/store/products/ipad.php In home.php the following can be written : <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> But in ipad.php the links have to be like this : <a href="../home.php">Home</a><a href="ipad.php">Ipad</a> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag. <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products/ipad.php 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing. ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT); On production , the display should be disabled. ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark. After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set. ini_set('log_errors' , '1');ini_set('error_log' , '/path/to/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); Note : 1. The path '/path/to/errors.txt' should be writable by the web server for errors to be logged there. 2. A separate error file is specified , otherwise all logs would go inside the apache/web server error log and get mixed up with other apache errors. 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver). 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like /var/log dont have to searched. 5. Dont set error_reporting to 0. It will not log anything then. Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file. Set 'display_errors=On' in php.ini on development machine On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page. Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work. Set 'display_errors=Off' in php.ini on production machine Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away. 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results. On a 64 bit machine you can see such output. $ php -aInteractive shellphp > echo strtotime("0000-00-00 00:00:00");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600 But on a 32 bit machine all of them would give bool(false). Check here for more. What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines. 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this : set_time_limit(30);//Rest of the code It may not always work. Any execution that happens outside the script via system calls/os functions like socket operations, database operations etc. will not be under control of set_time_limit. So if a database operation takes lot of time or "hangs" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time. 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it. A better solution : /** Method to execute a command in the terminal Uses : 1. system 2. passthru 3. exec 4. shell_exec*/function terminal($command){ //system if(function_exists('system')) { ob_start(); system($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //passthru else if(function_exists('passthru')) { ob_start(); passthru($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //exec else if(function_exists('exec')) { exec($command , $output , $return_var); $output = implode("\n" , $output); } //shell_exec else if(function_exists('shell_exec')) { $output = shell_exec($command) ; } else { $output = 'Command execution not possible on this system'; $return_var = 1; } return array('output' => $output , 'status' => $return_var);}terminal('ls'); The above function will execute the shell command using whichever function is available , keeping your code consistent. 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user. 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise. Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind. 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily. Few popular libraries are : mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference. 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code. Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community. They contain user feedback, expert advice and useful code snippets. So check them out. 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!! 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc. The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more 1. Codeigniter 2. WordPress 3. Joomla CMS 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment. Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster. Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free. 本站聲明 本文內(nèi)容由網(wǎng)友自發(fā)貢獻,版權(quán)歸原作者所有,本站不承擔相應(yīng)法律責任。如您發(fā)現(xiàn)有涉嫌抄襲侵權(quán)的內(nèi)容,請聯(lián)系admin@php.cn 熱AI工具 Undress AI Tool 免費脫衣服圖片 Undresser.AI Undress 人工智能驅(qū)動的應(yīng)用程序,用于創(chuàng)建逼真的裸體照片 AI Clothes Remover 用于從照片中去除衣服的在線人工智能工具。 Clothoff.io AI脫衣機 Video Face Swap 使用我們完全免費的人工智能換臉工具輕松在任何視頻中換臉! 顯示更多 熱門文章 指南:恒星刀片保存文件位置/保存文件丟失/不保存 4 周前 By DDD Oguri Cap Build Guide |漂亮的德比志 2 周前 By Jack chen Agnes Tachyon Build Guide |漂亮的德比志 1 周前 By Jack chen 沙丘:覺醒 - 高級行星學家Quest演練 4 周前 By Jack chen 約會一切:德克和哈珀關(guān)系指南 4 周前 By Jack chen 顯示更多 熱工具 記事本++7.3.1 好用且免費的代碼編輯器 SublimeText3漢化版 中文版,非常好用 禪工作室 13.0.1 功能強大的PHP集成開發(fā)環(huán)境 Dreamweaver CS6 視覺化網(wǎng)頁開發(fā)工具 SublimeText3 Mac版 神級代碼編輯軟件(SublimeText3) 顯示更多 熱門話題 gmail郵箱登陸入口在哪里 8638 17 Java教程 1783 16 CakePHP 教程 1728 56 Laravel 教程 1578 28 PHP教程 1442 31 顯示更多 Related knowledge 如何在PHP中實施身份驗證和授權(quán)? Jun 20, 2025 am 01:03 AM tosecurelyhandleauthenticationandationallizationInphp,lofterTheSesteps:1.AlwaysHashPasswordSwithPassword_hash()andverifyusingspasspassword_verify(),usepreparedStatatementStopreventsqlineptions,andStoreSeruserDatain usseruserDatain $ _sessiveferterlogin.2.implementrole-2.imaccessccsccccccccccccccccccccccccc. 如何在PHP中安全地處理文件上傳? Jun 19, 2025 am 01:05 AM 要安全處理PHP中的文件上傳,核心在于驗證文件類型、重命名文件并限制權(quán)限。1.使用finfo_file()檢查真實MIME類型,僅允許特定類型如image/jpeg;2.用uniqid()生成隨機文件名,存儲至非Web根目錄;3.通過php.ini和HTML表單限制文件大小,設(shè)置目錄權(quán)限為0755;4.使用ClamAV掃描惡意軟件,增強安全性。這些步驟有效防止安全漏洞,確保文件上傳過程安全可靠。 PHP中==(松散比較)和===(嚴格的比較)之間有什么區(qū)別? Jun 19, 2025 am 01:07 AM 在PHP中,==與===的主要區(qū)別在于類型檢查的嚴格程度。==在比較前會進行類型轉(zhuǎn)換,例如5=="5"返回true,而===要求值和類型都相同才會返回true,例如5==="5"返回false。使用場景上,===更安全應(yīng)優(yōu)先使用,==僅在需要類型轉(zhuǎn)換時使用。 如何在PHP( - , *, /,%)中執(zhí)行算術(shù)操作? Jun 19, 2025 pm 05:13 PM PHP中使用基本數(shù)學運算的方法如下:1.加法用 號,支持整數(shù)和浮點數(shù),也可用于變量,字符串數(shù)字會自動轉(zhuǎn)換但不推薦依賴;2.減法用-號,變量同理,類型轉(zhuǎn)換同樣適用;3.乘法用*號,適用于數(shù)字及類似字符串;4.除法用/號,需避免除以零,并注意結(jié)果可能是浮點數(shù);5.取模用%號,可用于判斷奇偶數(shù),處理負數(shù)時余數(shù)符號與被除數(shù)一致。正確使用這些運算符的關(guān)鍵在于確保數(shù)據(jù)類型清晰并處理好邊界情況。 如何與PHP的NOSQL數(shù)據(jù)庫(例如MongoDB,Redis)進行交互? Jun 19, 2025 am 01:07 AM 是的,PHP可以通過特定擴展或庫與MongoDB和Redis等NoSQL數(shù)據(jù)庫交互。首先,使用MongoDBPHP驅(qū)動(通過PECL或Composer安裝)創(chuàng)建客戶端實例并操作數(shù)據(jù)庫及集合,支持插入、查詢、聚合等操作;其次,使用Predis庫或phpredis擴展連接Redis,執(zhí)行鍵值設(shè)置與獲取,推薦phpredis用于高性能場景,Predis則便于快速部署;兩者均適用于生產(chǎn)環(huán)境且文檔完善。 我如何了解最新的PHP開發(fā)和最佳實踐? Jun 23, 2025 am 12:56 AM TostaycurrentwithPHPdevelopmentsandbestpractices,followkeynewssourceslikePHP.netandPHPWeekly,engagewithcommunitiesonforumsandconferences,keeptoolingupdatedandgraduallyadoptnewfeatures,andreadorcontributetoopensourceprojects.First,followreliablesource 什么是PHP,為什么它用于Web開發(fā)? Jun 23, 2025 am 12:55 AM PHPbecamepopularforwebdevelopmentduetoitseaseoflearning,seamlessintegrationwithHTML,widespreadhostingsupport,andalargeecosystemincludingframeworkslikeLaravelandCMSplatformslikeWordPress.Itexcelsinhandlingformsubmissions,managingusersessions,interacti 如何設(shè)置PHP時區(qū)? Jun 25, 2025 am 01:00 AM tosetTherightTimeZoneInphp,restate_default_timezone_set()functionAtthestArtofyourscriptWithavalIdidentIdentifiersuchas'america/new_york'.1.usedate_default_default_timezone_set_set() See all articles
This will save you lots of problem. Lets take an example :<\/p>
A class file super_class.php<\/p>
\/\/super extra character after the closing tag<\/pre> Now index.php<\/p> require_once('super_class.php');\/\/echo an image or pdf , or set the cookies or session data<\/pre> And you will get Headers already send error. Why ? because the \"super extra character\" has been echoed , and all headers went along with that. Now you start debugging. You may have to waste many hours to find the super extra space.<\/p> Hence make it a habit to omit the closing tag :<\/p> Thats better.<\/p> 7. Collect all output at one place , and output at one shot to the browser This is called output buffering. Lets say you have been echoing content from different functions like this :<\/p> function print_header(){ echo \"Site Log and Login links<\/div>\";}function print_footer(){ echo \"Site was made by me<\/div>\";}print_header();for($i = 0 ; $i < 100; $i++){ echo \"I is : $i ';}print_footer();<\/pre> Instead of doing like that , first collect all output in one place. You can either store it inside variables in the functions or use ob_start and ob_end_clean. So now it should look like<\/p> function print_header(){ $o = \"Site Log and Login links<\/div>\"; return $o;}function print_footer(){ $o = \"Site was made by me<\/div>\"; return $o;}echo print_header();for($i = 0 ; $i < 100; $i++){ echo \"I is : $i ';}echo print_footer();<\/pre> So why should you do output buffering :<\/p> You can change the output just before sending it to browser if you need to. Think about doing some str_replaces , or may be preg_replaces or may be adding some extra html at the end like profiler\/debugger output Its a bad idea to send output to browser and do php processing at the same time. Have you ever seen a website where there is a Fatal error in the sidebar or in a box in the middle of the screen. You know why that happens ? Because processing and output are being mixed. 8. Send correct mime types via header when outputting non-html content Lets echo some xml.<\/p> $xml = '';$xml = \" 0<\/code><\/response>\";\/\/Send xml dataecho $xml;<\/pre> Works fine. But it needs some improvement.<\/p> $xml = '';$xml = \" 0<\/code><\/response>\";\/\/Send xml dataheader(\"content-type: text\/xml\");echo $xml;<\/pre> Note that header line. That line tells the browser that the content is xml content. So the browser can handle it correctly. Many javascript libraries also rely on header information.<\/p> Similarly for javascript , css , jpg image , png image :<\/p> Javascript<\/p> header(\"content-type: application\/x-javascript\");echo \"var a = 10\";<\/pre> CSS<\/p> header(\"content-type: text\/css\");echo \"#div id { background:#000; }\";<\/pre> 9. Set the correct character encoding for a mysql connection Ever faced a problem that unicode\/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation.<\/p> $host = 'localhost';$username = 'root';$password = 'super_secret';\/\/Attempt to connect to database$c = mysqli_connect($host , $username, $password);\t\t\/\/Check connection validityif (!$c) {\tdie (\"Could not connect to the database host: \". mysqli_connect_error());}\t\t\/\/Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){\tdie('mysqli_set_charset() failed');}<\/pre> Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application.<\/p> Otherwise what will happen ? You will see lots of boxes and ???????? in non english text.<\/p> 10. Use htmlentities with the correct characterset option Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc.<\/p> $value = htmlentities($this->value , ENT_QUOTES , 'UTF-8');<\/pre> Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual.<\/p> 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php.<\/p> Use apache mod_gzip\/mod_deflate to compress content via the .htaccess file.<\/p> 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php.<\/p> $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= \"'$image' ,\";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;\/\/Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,];<\/pre> Be smart. use json_encode :<\/p> $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;\/\/Output is : var images = [\"myself.png\",\"friends.png\",\"colleagues.png\"]<\/pre> Isn't that neat ?<\/p> 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of \"debugging\" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on.<\/p> Make sure that your application is as intelligent as possible and reports the most important information in the shortest time.<\/p> $contents = \"All the content\";$file_path = \"\/var\/www\/project\/content.txt\";file_put_contents($file_path , $contents);<\/pre> That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons :<\/p> Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file.<\/p> $contents = \"All the content\";$dir = '\/var\/www\/project';$file_path = $dir . \"\/content.txt\";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die(\"Directory $dir is not writable, or does not exist. Please check\");}<\/pre> By doing this you get the accurate information that where is a file write failing and why<\/p> 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are \"accessible\" outside. Otherwise for example the files may be created by \"php\" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on.<\/p> \/\/ Read and write for owner, read for everybody elsechmod(\"\/somedir\/somefile\", 0644);\/\/ Everything for owner, read and execute for otherschmod(\"\/somedir\/somefile\", 0755);<\/pre> 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ \/\/Save the things}<\/pre> The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this :<\/p> if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ \/\/Save the things}<\/pre> Now you are free from the value the submit button<\/p> 16. Use static variables in function where they always have same value \/\/Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); \t echo \"Delaying for $sync_delay seconds...\"; sleep($sync_delay); echo \"Done \";}<\/pre> Instead use static variables as :<\/p> \/\/Delay for some timefunction delay(){ static $sync_delay = null;\t if($sync_delay == null) {\t$sync_delay = get_option('sync_delay'); }\t echo \"Delaying for $sync_delay seconds...\"; sleep($sync_delay); echo \"Done \";}<\/pre> 17. Don't use the $_SESSION variable directly Some simple examples are :<\/p> $_SESSION['username'] = $username;$username = $_SESSION['username'];<\/pre> But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain.<\/p> Hence use application specific keys with wrapper functions :<\/p> define('APP_ID' , 'abc_corp_ecommerce');\/\/Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}\/\/Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;}<\/pre> 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like :<\/p> function utility_a(){ \/\/This function does a utility thing like string processing}function utility_b(){ \/\/This function does nother utility thing like database processing}function utility_c(){ \/\/This function is ...}<\/pre> And you use the function throughout your application freely. You may want to wrap them into a class as static functions :<\/p> class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}\/\/and call them as $a = Utility::utility_a();$b = Utility::utility_b();<\/pre> One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else.<\/p> 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++;<\/pre> Its absolutely a WASTE.<\/p> Write<\/p> if($a == true){ $a_count++;}<\/pre> Dont try to make your code shorter by eating up syntax. Rather make your logic shorter.<\/p> Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this :<\/p> foreach($arr as $c => $v){\t$arr[$c] = trim($v);}<\/pre> But it can more cleaner with array_map :<\/p> $arr = array_map('trim' , $arr);<\/pre> This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more.<\/p> 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters.<\/p> The php filter extension provides simple way to validate or check values as being a valid 'something'.<\/p> 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate'];<\/pre> Its a good habit.<\/p> 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose<\/p> 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded :<\/p> $db_records_in_array_format; \/\/This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; \/\/2MB moresome_function($cc); \/\/Another 2MB ?<\/pre> The above thing is common when importing a csv file or exporting table to a csv file<\/p> Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays.<\/p> Consider passing them by reference , or storing them in a class variable :<\/p> $a = get_large_array();pass_to_function(&$a);<\/pre> by doing this the same variable (and not its copy) will be available to the function. Check documentation<\/p> class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { \/\/process $this->a }}<\/pre> unset them as soon as possible , so that memory is freed and rest of the script can relax.<\/p> Here is a simple demonstration of how assign by reference can save memory in some cases<\/p> ';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() \/ 1000000 . '';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() \/ 1000000 . '';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() \/ 1000000 . '';<\/pre> The output on a typical php 5.4 machine is :<\/p> Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 <\/p> So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more.<\/p> 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this :<\/p> function add_to_cart(){ $db = new Database(); $db->query(\"INSERT INTO cart .....\");}function empty_cart(){ $db = new Database(); $db->query(\"DELETE FROM cart .....\");}<\/pre> Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory.<\/p> Use the singleton pattern for special cases like database connection.<\/p> 26. Avoid direct SQL query , abstract it $query = \"INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')\";$db->query($query); \/\/call to mysqli_query()<\/pre> The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like:<\/p> All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord<\/p> It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries.<\/p> A very simple example of an activerecord insert function can be like this :<\/p> function insert_record($table_name , $data){ foreach($data as $key => $value) {\t\/\/mysqli_real_escape_string $data[$key] = $db->mres($value); }\t\t $fields = implode(',' , array_keys($data)); $values = \"'\" . implode(\"','\" , array_values($data)) . \"'\"; \/\/Final query\t $query = \"INSERT INTO {$table}($fields) VALUES($values)\";\t\t return $db->query($query);}\/\/data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);\/\/perform the INSERT queryinsert_record('users' , $data);<\/pre> The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse).<\/p> This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise.<\/p> 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again.<\/p> Benefits :<\/p> Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue.<\/p> Storing session in database makes many other things easier like:<\/p> Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines\/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example :<\/p> <\/head> <\/body><\/html><\/pre> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories.<\/p> Lets take an example<\/p> www.domain.com\/store\/home.php www.domain.com\/store\/products\/ipad.php<\/p> In home.php the following can be written :<\/p> Home<\/a>Ipad<\/a><\/pre> But in ipad.php the links have to be like this :<\/p> Home<\/a>Ipad<\/a><\/pre> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag.<\/p> <\/head>Home<\/a>Ipad<\/a><\/body><\/html><\/pre> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products\/ipad.php<\/p> 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing.<\/p> ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT);<\/pre> On production , the display should be disabled.<\/p> ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark.<\/p> After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set.<\/p> ini_set('log_errors' , '1');ini_set('error_log' , '\/path\/to\/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> Note :<\/p> 1. The path '\/path\/to\/errors.txt' should be writable by the web server for errors to be logged there.<\/p> 2. A separate error file is specified , otherwise all logs would go inside the apache\/web server error log and get mixed up with other apache errors.<\/p> 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver).<\/p> 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like \/var\/log dont have to searched.<\/p> 5. Dont set error_reporting to 0. It will not log anything then.<\/p> Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file.<\/p> Set 'display_errors=On' in php.ini on development machine<\/p> On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page.<\/p> Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work.<\/p> Set 'display_errors=Off' in php.ini on production machine<\/p> Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away.<\/p> 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results.<\/p> On a 64 bit machine you can see such output.<\/p> $ php -aInteractive shellphp > echo strtotime(\"0000-00-00 00:00:00\");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600<\/pre> But on a 32 bit machine all of them would give bool(false). Check here for more.<\/p> What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines.<\/p> 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this :<\/p> set_time_limit(30);\/\/Rest of the code<\/pre> It may not always work. Any execution that happens outside the script via system calls\/os functions like socket operations, database operations etc. will not be under control of set_time_limit.<\/p> So if a database operation takes lot of time or \"hangs\" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time.<\/p> 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it.<\/p> A better solution :<\/p> \/**\tMethod to execute a command in the terminal\tUses :\t1. system\t2. passthru\t3. exec\t4. shell_exec*\/function terminal($command){\t\/\/system\tif(function_exists('system'))\t{\t\tob_start();\t\tsystem($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/passthru\telse if(function_exists('passthru'))\t{\t\tob_start();\t\tpassthru($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/exec\telse if(function_exists('exec'))\t{\t\texec($command , $output , $return_var);\t\t$output = implode(\"\\n\" , $output);\t}\t\/\/shell_exec\telse if(function_exists('shell_exec'))\t{\t\t$output = shell_exec($command) ;\t}\telse\t{\t\t$output = 'Command execution not possible on this system';\t\t$return_var = 1;\t}\treturn array('output' => $output , 'status' => $return_var);}terminal('ls');<\/pre> The above function will execute the shell command using whichever function is available , keeping your code consistent.<\/p> 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user.<\/p> 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise.<\/p> Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind.<\/p> 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily.<\/p> Few popular libraries are :<\/p> mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference.<\/p> 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code.<\/p> Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community.<\/p> They contain user feedback, expert advice and useful code snippets. So check them out.<\/p> 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!!<\/p> 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc.<\/p> The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more<\/p> 1. Codeigniter 2. WordPress 3. Joomla CMS<\/p> 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment.<\/p> Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster.<\/p> Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free.<\/p> "} 社區(qū) 文章 合集 問答 學習 課程 編程詞典 工具庫 開發(fā)工具 網(wǎng)站源碼 PHP 庫 JS特效 網(wǎng)站素材 擴展插件 AI工具 休閑 游戲下載 游戲教程 簡體中文 簡體中文 English 繁體中文 日本語 ??? Melayu Fran?ais Deutsch Login singup 首頁 后端開發(fā) php教程 40+ Useful Php tips for beginners ? Part 1 40+ Useful Php tips for beginners ? Part 1 WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB Jun 23, 2016 pm 02:37 PM PHP學習指南 http://www.binarytides.com/category/php-2/tutorial/ In this series we are going to look into some useful tips and techniques that can be used to improve and optimise your php code. Note that these php tips are meant for beginners and not those who are already using mvc frameworks etc. The Techniques 1. Do not use relative paths , instead define a ROOT path Its quite common to see such lines : require_once('http://www.cnblogs.com/lib/some_class.php'); This approach has many drawbacks : It first searches for directories specified in the include paths of php , then looks from the current directory. So many directories are checked. When a script is included by another script in a different directory , its base directory changes to that of the including script. Another issue , is that when a script is being run from cron , it may not have its parent directory as the working directory. So its a good idea to have absolute paths : define('ROOT' , '/var/www/project/');require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code Now this is an absolute path and will always stay constant. But we can improve this further. The directory /var/www/project can change , so do we change it everytime ? No instead we make it portable using magic constants like __FILE__ . Take a closer look : //suppose your script is /var/www/project/index.php//Then __FILE__ will always have that full path.define('ROOT' , pathinfo(__FILE__, PATHINFO_DIRNAME));require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code So now even if you shift your project to a different directory , like moving it to an online server , the same code will run without any changes. 2. Dont use require , include , require_once or include_once Your script could be including various files on top , like class libraries , files for utility and helper functions etc like this : require_once('lib/Database.php');require_once('lib/Mail.php');require_once('helpers/utitlity_functions.php'); This is rather primitive. The code needs to be more flexible. Write up helper functions to include things more easily. Lets take an example : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); require_once( $path ); }load_class('Database');load_class('Mail'); See any difference ? You must. It does not need any more explanation. You can improve this further if you wish to like this : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); if(file_exists($path)) { require_once( $path ); }} There are a lot of things that can be done with this : Search multiple directories for the same class file. Change the directory containing class files easily , without breaking the code anywhere. Use similar functions for loading files that contain helper functions , html content etc. 3. Maintain debugging environment in your application During development we echo database queries , dump variables which are creating problems , and then once the problem is solved , we comment them or erase them. But its a good idea to let everything stay and help in the long run On your development machine you can do this : define('ENVIRONMENT' , 'development');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } And on the server you can do this : define('ENVIRONMENT' , 'production');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } 4. Propagate status messages via session Status messages are those messages that are generated after doing a task. <?phpif($wrong_username || $wrong_password){ $msg = 'Invalid username or password';}?><html><body><?php echo $msg; ?><form>...</form></body></html> Code like that is common. Using variables to show status messages has limitations. They cannot be send via redirects (unless you propagate them as GET variables to the next script , which is very silly). In large scripts there might be multiple messages etc. Best way is to use session to propagate them (even if on same page). For this there has to be a session_start on every page. function set_flash($msg){ $_SESSION['message'] = $msg;}function get_flash(){ $msg = $_SESSION['message']; unset($_SESSION['message']); return $msg;} and in your script : <?phpif($wrong_username || $wrong_password){ set_flash('Invalid username or password');}?><html><body>Status is : <?php echo get_flash(); ?><form>...</form></body></html> 5. Make your functions flexible function add_to_cart($item_id , $qty){ $_SESSION['cart'][$item_id] = $qty;}add_to_cart( 'IPHONE3' , 2 ); When adding a single item you use the above function. When adding multiple items , will you create another function ? NO. Just make the function flexible enough to take different kinds of parameters. Have a closer look : function add_to_cart($item_id , $qty){ if(!is_array($item_id)) { $_SESSION['cart'][$item_id] = $qty; } else { foreach($item_id as $i_id => $qty) { $_SESSION['cart'][$i_id] = $qty; } }}add_to_cart( 'IPHONE3' , 2 );add_to_cart( array('IPHONE3' => 2 , 'IPAD' => 5) ); So now the same function can accept different kinds of output. The above can be applied in lots of places to make your code more agile. 6. Omit the closing php tag if it is the last thing in a script I wonder why this tip is omitted from so many blog posts on php tips. <?phpecho "Hello";//Now dont close this tag This will save you lots of problem. Lets take an example : A class file super_class.php <?phpclass super_class{ function super_function() { //super code }}?>//super extra character after the closing tag Now index.php require_once('super_class.php');//echo an image or pdf , or set the cookies or session data And you will get Headers already send error. Why ? because the "super extra character" has been echoed , and all headers went along with that. Now you start debugging. You may have to waste many hours to find the super extra space. Hence make it a habit to omit the closing tag : <?phpclass super_class{ function super_function() { //super code }}//No closing tag Thats better. 7. Collect all output at one place , and output at one shot to the browser This is called output buffering. Lets say you have been echoing content from different functions like this : function print_header(){ echo "<div id='header'>Site Log and Login links</div>";}function print_footer(){ echo "<div id='footer'>Site was made by me</div>";}print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}print_footer(); Instead of doing like that , first collect all output in one place. You can either store it inside variables in the functions or use ob_start and ob_end_clean. So now it should look like function print_header(){ $o = "<div id='header'>Site Log and Login links</div>"; return $o;}function print_footer(){ $o = "<div id='footer'>Site was made by me</div>"; return $o;}echo print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}echo print_footer(); So why should you do output buffering : You can change the output just before sending it to browser if you need to. Think about doing some str_replaces , or may be preg_replaces or may be adding some extra html at the end like profiler/debugger output Its a bad idea to send output to browser and do php processing at the same time. Have you ever seen a website where there is a Fatal error in the sidebar or in a box in the middle of the screen. You know why that happens ? Because processing and output are being mixed. 8. Send correct mime types via header when outputting non-html content Lets echo some xml. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataecho $xml; Works fine. But it needs some improvement. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataheader("content-type: text/xml");echo $xml; Note that header line. That line tells the browser that the content is xml content. So the browser can handle it correctly. Many javascript libraries also rely on header information. Similarly for javascript , css , jpg image , png image : Javascript header("content-type: application/x-javascript");echo "var a = 10"; CSS header("content-type: text/css");echo "#div id { background:#000; }"; 9. Set the correct character encoding for a mysql connection Ever faced a problem that unicode/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation. $host = 'localhost';$username = 'root';$password = 'super_secret';//Attempt to connect to database$c = mysqli_connect($host , $username, $password); //Check connection validityif (!$c) { die ("Could not connect to the database host: <br />". mysqli_connect_error());} //Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){ die('mysqli_set_charset() failed');} Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application. Otherwise what will happen ? You will see lots of boxes and ???????? in non english text. 10. Use htmlentities with the correct characterset option Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc. $value = htmlentities($this->value , ENT_QUOTES , 'UTF-8'); Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual. 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php. Use apache mod_gzip/mod_deflate to compress content via the .htaccess file. 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php. $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= "'$image' ,";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;//Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,]; Be smart. use json_encode : $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;//Output is : var images = ["myself.png","friends.png","colleagues.png"] Isn't that neat ? 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of "debugging" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on. Make sure that your application is as intelligent as possible and reports the most important information in the shortest time. $contents = "All the content";$file_path = "/var/www/project/content.txt";file_put_contents($file_path , $contents); That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons : Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file. $contents = "All the content";$dir = '/var/www/project';$file_path = $dir . "/content.txt";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die("Directory $dir is not writable, or does not exist. Please check");} By doing this you get the accurate information that where is a file write failing and why 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are "accessible" outside. Otherwise for example the files may be created by "php" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on. // Read and write for owner, read for everybody elsechmod("/somedir/somefile", 0644);// Everything for owner, read and execute for otherschmod("/somedir/somefile", 0755); 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ //Save the things} The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this : if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ //Save the things} Now you are free from the value the submit button 16. Use static variables in function where they always have same value //Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} Instead use static variables as : //Delay for some timefunction delay(){ static $sync_delay = null; if($sync_delay == null) { $sync_delay = get_option('sync_delay'); } echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} 17. Don't use the $_SESSION variable directly Some simple examples are : $_SESSION['username'] = $username;$username = $_SESSION['username']; But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain. Hence use application specific keys with wrapper functions : define('APP_ID' , 'abc_corp_ecommerce');//Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}//Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;} 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like : function utility_a(){ //This function does a utility thing like string processing}function utility_b(){ //This function does nother utility thing like database processing}function utility_c(){ //This function is ...} And you use the function throughout your application freely. You may want to wrap them into a class as static functions : class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}//and call them as $a = Utility::utility_a();$b = Utility::utility_b(); One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else. 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++; Its absolutely a WASTE. Write if($a == true){ $a_count++;} Dont try to make your code shorter by eating up syntax. Rather make your logic shorter. Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this : foreach($arr as $c => $v){ $arr[$c] = trim($v);} But it can more cleaner with array_map : $arr = array_map('trim' , $arr); This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more. 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters. The php filter extension provides simple way to validate or check values as being a valid 'something'. 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate']; Its a good habit. 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded : $db_records_in_array_format; //This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; //2MB moresome_function($cc); //Another 2MB ? The above thing is common when importing a csv file or exporting table to a csv file Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays. Consider passing them by reference , or storing them in a class variable : $a = get_large_array();pass_to_function(&$a); by doing this the same variable (and not its copy) will be available to the function. Check documentation class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { //process $this->a }} unset them as soon as possible , so that memory is freed and rest of the script can relax. Here is a simple demonstration of how assign by reference can save memory in some cases <?phpini_set('display_errors' , true);error_reporting(E_ALL);$a = array();for($i = 0; $i < 100000 ; $i++){ $a[$i] = 'A'.$i;}echo 'Memory usage in MB : '. memory_get_usage() / 1000000 . '<br />';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() / 1000000 . '<br />';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() / 1000000 . '<br />';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() / 1000000 . '<br />'; The output on a typical php 5.4 machine is : Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more. 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this : function add_to_cart(){ $db = new Database(); $db->query("INSERT INTO cart .....");}function empty_cart(){ $db = new Database(); $db->query("DELETE FROM cart .....");} Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory. Use the singleton pattern for special cases like database connection. 26. Avoid direct SQL query , abstract it $query = "INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')";$db->query($query); //call to mysqli_query() The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like: All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries. A very simple example of an activerecord insert function can be like this : function insert_record($table_name , $data){ foreach($data as $key => $value) { //mysqli_real_escape_string $data[$key] = $db->mres($value); } $fields = implode(',' , array_keys($data)); $values = "'" . implode("','" , array_values($data)) . "'"; //Final query $query = "INSERT INTO {$table}($fields) VALUES($values)"; return $db->query($query);}//data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);//perform the INSERT queryinsert_record('users' , $data); The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse). This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise. 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again. Benefits : Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue. Storing session in database makes many other things easier like: Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example : <head> <base href="http://www.domain.com/store/"></head><body> <img src="/static/imghw/default1.png" data-src="happy.jpg" class="lazy" / alt="40+ Useful Php tips for beginners ? Part 1" ></body></html> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories. Lets take an example www.domain.com/store/home.php www.domain.com/store/products/ipad.php In home.php the following can be written : <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> But in ipad.php the links have to be like this : <a href="../home.php">Home</a><a href="ipad.php">Ipad</a> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag. <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products/ipad.php 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing. ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT); On production , the display should be disabled. ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark. After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set. ini_set('log_errors' , '1');ini_set('error_log' , '/path/to/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); Note : 1. The path '/path/to/errors.txt' should be writable by the web server for errors to be logged there. 2. A separate error file is specified , otherwise all logs would go inside the apache/web server error log and get mixed up with other apache errors. 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver). 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like /var/log dont have to searched. 5. Dont set error_reporting to 0. It will not log anything then. Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file. Set 'display_errors=On' in php.ini on development machine On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page. Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work. Set 'display_errors=Off' in php.ini on production machine Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away. 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results. On a 64 bit machine you can see such output. $ php -aInteractive shellphp > echo strtotime("0000-00-00 00:00:00");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600 But on a 32 bit machine all of them would give bool(false). Check here for more. What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines. 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this : set_time_limit(30);//Rest of the code It may not always work. Any execution that happens outside the script via system calls/os functions like socket operations, database operations etc. will not be under control of set_time_limit. So if a database operation takes lot of time or "hangs" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time. 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it. A better solution : /** Method to execute a command in the terminal Uses : 1. system 2. passthru 3. exec 4. shell_exec*/function terminal($command){ //system if(function_exists('system')) { ob_start(); system($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //passthru else if(function_exists('passthru')) { ob_start(); passthru($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //exec else if(function_exists('exec')) { exec($command , $output , $return_var); $output = implode("\n" , $output); } //shell_exec else if(function_exists('shell_exec')) { $output = shell_exec($command) ; } else { $output = 'Command execution not possible on this system'; $return_var = 1; } return array('output' => $output , 'status' => $return_var);}terminal('ls'); The above function will execute the shell command using whichever function is available , keeping your code consistent. 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user. 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise. Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind. 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily. Few popular libraries are : mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference. 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code. Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community. They contain user feedback, expert advice and useful code snippets. So check them out. 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!! 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc. The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more 1. Codeigniter 2. WordPress 3. Joomla CMS 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment. Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster. Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free. 本站聲明 本文內(nèi)容由網(wǎng)友自發(fā)貢獻,版權(quán)歸原作者所有,本站不承擔相應(yīng)法律責任。如您發(fā)現(xiàn)有涉嫌抄襲侵權(quán)的內(nèi)容,請聯(lián)系admin@php.cn 熱AI工具 Undress AI Tool 免費脫衣服圖片 Undresser.AI Undress 人工智能驅(qū)動的應(yīng)用程序,用于創(chuàng)建逼真的裸體照片 AI Clothes Remover 用于從照片中去除衣服的在線人工智能工具。 Clothoff.io AI脫衣機 Video Face Swap 使用我們完全免費的人工智能換臉工具輕松在任何視頻中換臉! 顯示更多 熱門文章 指南:恒星刀片保存文件位置/保存文件丟失/不保存 4 周前 By DDD Oguri Cap Build Guide |漂亮的德比志 2 周前 By Jack chen Agnes Tachyon Build Guide |漂亮的德比志 1 周前 By Jack chen 沙丘:覺醒 - 高級行星學家Quest演練 4 周前 By Jack chen 約會一切:德克和哈珀關(guān)系指南 4 周前 By Jack chen 顯示更多 熱工具 記事本++7.3.1 好用且免費的代碼編輯器 SublimeText3漢化版 中文版,非常好用 禪工作室 13.0.1 功能強大的PHP集成開發(fā)環(huán)境 Dreamweaver CS6 視覺化網(wǎng)頁開發(fā)工具 SublimeText3 Mac版 神級代碼編輯軟件(SublimeText3) 顯示更多 熱門話題 gmail郵箱登陸入口在哪里 8638 17 Java教程 1783 16 CakePHP 教程 1728 56 Laravel 教程 1578 28 PHP教程 1442 31 顯示更多 Related knowledge 如何在PHP中實施身份驗證和授權(quán)? Jun 20, 2025 am 01:03 AM tosecurelyhandleauthenticationandationallizationInphp,lofterTheSesteps:1.AlwaysHashPasswordSwithPassword_hash()andverifyusingspasspassword_verify(),usepreparedStatatementStopreventsqlineptions,andStoreSeruserDatain usseruserDatain $ _sessiveferterlogin.2.implementrole-2.imaccessccsccccccccccccccccccccccccc. 如何在PHP中安全地處理文件上傳? Jun 19, 2025 am 01:05 AM 要安全處理PHP中的文件上傳,核心在于驗證文件類型、重命名文件并限制權(quán)限。1.使用finfo_file()檢查真實MIME類型,僅允許特定類型如image/jpeg;2.用uniqid()生成隨機文件名,存儲至非Web根目錄;3.通過php.ini和HTML表單限制文件大小,設(shè)置目錄權(quán)限為0755;4.使用ClamAV掃描惡意軟件,增強安全性。這些步驟有效防止安全漏洞,確保文件上傳過程安全可靠。 PHP中==(松散比較)和===(嚴格的比較)之間有什么區(qū)別? Jun 19, 2025 am 01:07 AM 在PHP中,==與===的主要區(qū)別在于類型檢查的嚴格程度。==在比較前會進行類型轉(zhuǎn)換,例如5=="5"返回true,而===要求值和類型都相同才會返回true,例如5==="5"返回false。使用場景上,===更安全應(yīng)優(yōu)先使用,==僅在需要類型轉(zhuǎn)換時使用。 如何在PHP( - , *, /,%)中執(zhí)行算術(shù)操作? Jun 19, 2025 pm 05:13 PM PHP中使用基本數(shù)學運算的方法如下:1.加法用 號,支持整數(shù)和浮點數(shù),也可用于變量,字符串數(shù)字會自動轉(zhuǎn)換但不推薦依賴;2.減法用-號,變量同理,類型轉(zhuǎn)換同樣適用;3.乘法用*號,適用于數(shù)字及類似字符串;4.除法用/號,需避免除以零,并注意結(jié)果可能是浮點數(shù);5.取模用%號,可用于判斷奇偶數(shù),處理負數(shù)時余數(shù)符號與被除數(shù)一致。正確使用這些運算符的關(guān)鍵在于確保數(shù)據(jù)類型清晰并處理好邊界情況。 如何與PHP的NOSQL數(shù)據(jù)庫(例如MongoDB,Redis)進行交互? Jun 19, 2025 am 01:07 AM 是的,PHP可以通過特定擴展或庫與MongoDB和Redis等NoSQL數(shù)據(jù)庫交互。首先,使用MongoDBPHP驅(qū)動(通過PECL或Composer安裝)創(chuàng)建客戶端實例并操作數(shù)據(jù)庫及集合,支持插入、查詢、聚合等操作;其次,使用Predis庫或phpredis擴展連接Redis,執(zhí)行鍵值設(shè)置與獲取,推薦phpredis用于高性能場景,Predis則便于快速部署;兩者均適用于生產(chǎn)環(huán)境且文檔完善。 我如何了解最新的PHP開發(fā)和最佳實踐? Jun 23, 2025 am 12:56 AM TostaycurrentwithPHPdevelopmentsandbestpractices,followkeynewssourceslikePHP.netandPHPWeekly,engagewithcommunitiesonforumsandconferences,keeptoolingupdatedandgraduallyadoptnewfeatures,andreadorcontributetoopensourceprojects.First,followreliablesource 什么是PHP,為什么它用于Web開發(fā)? Jun 23, 2025 am 12:55 AM PHPbecamepopularforwebdevelopmentduetoitseaseoflearning,seamlessintegrationwithHTML,widespreadhostingsupport,andalargeecosystemincludingframeworkslikeLaravelandCMSplatformslikeWordPress.Itexcelsinhandlingformsubmissions,managingusersessions,interacti 如何設(shè)置PHP時區(qū)? Jun 25, 2025 am 01:00 AM tosetTherightTimeZoneInphp,restate_default_timezone_set()functionAtthestArtofyourscriptWithavalIdidentIdentifiersuchas'america/new_york'.1.usedate_default_default_timezone_set_set() See all articles
Now index.php<\/p>
require_once('super_class.php');\/\/echo an image or pdf , or set the cookies or session data<\/pre> And you will get Headers already send error. Why ? because the \"super extra character\" has been echoed , and all headers went along with that. Now you start debugging. You may have to waste many hours to find the super extra space.<\/p> Hence make it a habit to omit the closing tag :<\/p> Thats better.<\/p> 7. Collect all output at one place , and output at one shot to the browser This is called output buffering. Lets say you have been echoing content from different functions like this :<\/p> function print_header(){ echo \"Site Log and Login links<\/div>\";}function print_footer(){ echo \"Site was made by me<\/div>\";}print_header();for($i = 0 ; $i < 100; $i++){ echo \"I is : $i ';}print_footer();<\/pre> Instead of doing like that , first collect all output in one place. You can either store it inside variables in the functions or use ob_start and ob_end_clean. So now it should look like<\/p> function print_header(){ $o = \"Site Log and Login links<\/div>\"; return $o;}function print_footer(){ $o = \"Site was made by me<\/div>\"; return $o;}echo print_header();for($i = 0 ; $i < 100; $i++){ echo \"I is : $i ';}echo print_footer();<\/pre> So why should you do output buffering :<\/p> You can change the output just before sending it to browser if you need to. Think about doing some str_replaces , or may be preg_replaces or may be adding some extra html at the end like profiler\/debugger output Its a bad idea to send output to browser and do php processing at the same time. Have you ever seen a website where there is a Fatal error in the sidebar or in a box in the middle of the screen. You know why that happens ? Because processing and output are being mixed. 8. Send correct mime types via header when outputting non-html content Lets echo some xml.<\/p> $xml = '';$xml = \" 0<\/code><\/response>\";\/\/Send xml dataecho $xml;<\/pre> Works fine. But it needs some improvement.<\/p> $xml = '';$xml = \" 0<\/code><\/response>\";\/\/Send xml dataheader(\"content-type: text\/xml\");echo $xml;<\/pre> Note that header line. That line tells the browser that the content is xml content. So the browser can handle it correctly. Many javascript libraries also rely on header information.<\/p> Similarly for javascript , css , jpg image , png image :<\/p> Javascript<\/p> header(\"content-type: application\/x-javascript\");echo \"var a = 10\";<\/pre> CSS<\/p> header(\"content-type: text\/css\");echo \"#div id { background:#000; }\";<\/pre> 9. Set the correct character encoding for a mysql connection Ever faced a problem that unicode\/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation.<\/p> $host = 'localhost';$username = 'root';$password = 'super_secret';\/\/Attempt to connect to database$c = mysqli_connect($host , $username, $password);\t\t\/\/Check connection validityif (!$c) {\tdie (\"Could not connect to the database host: \". mysqli_connect_error());}\t\t\/\/Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){\tdie('mysqli_set_charset() failed');}<\/pre> Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application.<\/p> Otherwise what will happen ? You will see lots of boxes and ???????? in non english text.<\/p> 10. Use htmlentities with the correct characterset option Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc.<\/p> $value = htmlentities($this->value , ENT_QUOTES , 'UTF-8');<\/pre> Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual.<\/p> 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php.<\/p> Use apache mod_gzip\/mod_deflate to compress content via the .htaccess file.<\/p> 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php.<\/p> $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= \"'$image' ,\";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;\/\/Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,];<\/pre> Be smart. use json_encode :<\/p> $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;\/\/Output is : var images = [\"myself.png\",\"friends.png\",\"colleagues.png\"]<\/pre> Isn't that neat ?<\/p> 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of \"debugging\" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on.<\/p> Make sure that your application is as intelligent as possible and reports the most important information in the shortest time.<\/p> $contents = \"All the content\";$file_path = \"\/var\/www\/project\/content.txt\";file_put_contents($file_path , $contents);<\/pre> That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons :<\/p> Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file.<\/p> $contents = \"All the content\";$dir = '\/var\/www\/project';$file_path = $dir . \"\/content.txt\";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die(\"Directory $dir is not writable, or does not exist. Please check\");}<\/pre> By doing this you get the accurate information that where is a file write failing and why<\/p> 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are \"accessible\" outside. Otherwise for example the files may be created by \"php\" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on.<\/p> \/\/ Read and write for owner, read for everybody elsechmod(\"\/somedir\/somefile\", 0644);\/\/ Everything for owner, read and execute for otherschmod(\"\/somedir\/somefile\", 0755);<\/pre> 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ \/\/Save the things}<\/pre> The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this :<\/p> if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ \/\/Save the things}<\/pre> Now you are free from the value the submit button<\/p> 16. Use static variables in function where they always have same value \/\/Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); \t echo \"Delaying for $sync_delay seconds...\"; sleep($sync_delay); echo \"Done \";}<\/pre> Instead use static variables as :<\/p> \/\/Delay for some timefunction delay(){ static $sync_delay = null;\t if($sync_delay == null) {\t$sync_delay = get_option('sync_delay'); }\t echo \"Delaying for $sync_delay seconds...\"; sleep($sync_delay); echo \"Done \";}<\/pre> 17. Don't use the $_SESSION variable directly Some simple examples are :<\/p> $_SESSION['username'] = $username;$username = $_SESSION['username'];<\/pre> But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain.<\/p> Hence use application specific keys with wrapper functions :<\/p> define('APP_ID' , 'abc_corp_ecommerce');\/\/Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}\/\/Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;}<\/pre> 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like :<\/p> function utility_a(){ \/\/This function does a utility thing like string processing}function utility_b(){ \/\/This function does nother utility thing like database processing}function utility_c(){ \/\/This function is ...}<\/pre> And you use the function throughout your application freely. You may want to wrap them into a class as static functions :<\/p> class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}\/\/and call them as $a = Utility::utility_a();$b = Utility::utility_b();<\/pre> One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else.<\/p> 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++;<\/pre> Its absolutely a WASTE.<\/p> Write<\/p> if($a == true){ $a_count++;}<\/pre> Dont try to make your code shorter by eating up syntax. Rather make your logic shorter.<\/p> Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this :<\/p> foreach($arr as $c => $v){\t$arr[$c] = trim($v);}<\/pre> But it can more cleaner with array_map :<\/p> $arr = array_map('trim' , $arr);<\/pre> This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more.<\/p> 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters.<\/p> The php filter extension provides simple way to validate or check values as being a valid 'something'.<\/p> 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate'];<\/pre> Its a good habit.<\/p> 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose<\/p> 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded :<\/p> $db_records_in_array_format; \/\/This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; \/\/2MB moresome_function($cc); \/\/Another 2MB ?<\/pre> The above thing is common when importing a csv file or exporting table to a csv file<\/p> Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays.<\/p> Consider passing them by reference , or storing them in a class variable :<\/p> $a = get_large_array();pass_to_function(&$a);<\/pre> by doing this the same variable (and not its copy) will be available to the function. Check documentation<\/p> class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { \/\/process $this->a }}<\/pre> unset them as soon as possible , so that memory is freed and rest of the script can relax.<\/p> Here is a simple demonstration of how assign by reference can save memory in some cases<\/p> ';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() \/ 1000000 . '';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() \/ 1000000 . '';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() \/ 1000000 . '';<\/pre> The output on a typical php 5.4 machine is :<\/p> Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 <\/p> So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more.<\/p> 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this :<\/p> function add_to_cart(){ $db = new Database(); $db->query(\"INSERT INTO cart .....\");}function empty_cart(){ $db = new Database(); $db->query(\"DELETE FROM cart .....\");}<\/pre> Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory.<\/p> Use the singleton pattern for special cases like database connection.<\/p> 26. Avoid direct SQL query , abstract it $query = \"INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')\";$db->query($query); \/\/call to mysqli_query()<\/pre> The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like:<\/p> All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord<\/p> It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries.<\/p> A very simple example of an activerecord insert function can be like this :<\/p> function insert_record($table_name , $data){ foreach($data as $key => $value) {\t\/\/mysqli_real_escape_string $data[$key] = $db->mres($value); }\t\t $fields = implode(',' , array_keys($data)); $values = \"'\" . implode(\"','\" , array_values($data)) . \"'\"; \/\/Final query\t $query = \"INSERT INTO {$table}($fields) VALUES($values)\";\t\t return $db->query($query);}\/\/data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);\/\/perform the INSERT queryinsert_record('users' , $data);<\/pre> The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse).<\/p> This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise.<\/p> 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again.<\/p> Benefits :<\/p> Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue.<\/p> Storing session in database makes many other things easier like:<\/p> Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines\/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example :<\/p> <\/head> <\/body><\/html><\/pre> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories.<\/p> Lets take an example<\/p> www.domain.com\/store\/home.php www.domain.com\/store\/products\/ipad.php<\/p> In home.php the following can be written :<\/p> Home<\/a>Ipad<\/a><\/pre> But in ipad.php the links have to be like this :<\/p> Home<\/a>Ipad<\/a><\/pre> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag.<\/p> <\/head>Home<\/a>Ipad<\/a><\/body><\/html><\/pre> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products\/ipad.php<\/p> 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing.<\/p> ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT);<\/pre> On production , the display should be disabled.<\/p> ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark.<\/p> After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set.<\/p> ini_set('log_errors' , '1');ini_set('error_log' , '\/path\/to\/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> Note :<\/p> 1. The path '\/path\/to\/errors.txt' should be writable by the web server for errors to be logged there.<\/p> 2. A separate error file is specified , otherwise all logs would go inside the apache\/web server error log and get mixed up with other apache errors.<\/p> 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver).<\/p> 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like \/var\/log dont have to searched.<\/p> 5. Dont set error_reporting to 0. It will not log anything then.<\/p> Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file.<\/p> Set 'display_errors=On' in php.ini on development machine<\/p> On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page.<\/p> Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work.<\/p> Set 'display_errors=Off' in php.ini on production machine<\/p> Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away.<\/p> 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results.<\/p> On a 64 bit machine you can see such output.<\/p> $ php -aInteractive shellphp > echo strtotime(\"0000-00-00 00:00:00\");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600<\/pre> But on a 32 bit machine all of them would give bool(false). Check here for more.<\/p> What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines.<\/p> 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this :<\/p> set_time_limit(30);\/\/Rest of the code<\/pre> It may not always work. Any execution that happens outside the script via system calls\/os functions like socket operations, database operations etc. will not be under control of set_time_limit.<\/p> So if a database operation takes lot of time or \"hangs\" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time.<\/p> 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it.<\/p> A better solution :<\/p> \/**\tMethod to execute a command in the terminal\tUses :\t1. system\t2. passthru\t3. exec\t4. shell_exec*\/function terminal($command){\t\/\/system\tif(function_exists('system'))\t{\t\tob_start();\t\tsystem($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/passthru\telse if(function_exists('passthru'))\t{\t\tob_start();\t\tpassthru($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/exec\telse if(function_exists('exec'))\t{\t\texec($command , $output , $return_var);\t\t$output = implode(\"\\n\" , $output);\t}\t\/\/shell_exec\telse if(function_exists('shell_exec'))\t{\t\t$output = shell_exec($command) ;\t}\telse\t{\t\t$output = 'Command execution not possible on this system';\t\t$return_var = 1;\t}\treturn array('output' => $output , 'status' => $return_var);}terminal('ls');<\/pre> The above function will execute the shell command using whichever function is available , keeping your code consistent.<\/p> 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user.<\/p> 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise.<\/p> Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind.<\/p> 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily.<\/p> Few popular libraries are :<\/p> mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference.<\/p> 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code.<\/p> Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community.<\/p> They contain user feedback, expert advice and useful code snippets. So check them out.<\/p> 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!!<\/p> 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc.<\/p> The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more<\/p> 1. Codeigniter 2. WordPress 3. Joomla CMS<\/p> 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment.<\/p> Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster.<\/p> Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free.<\/p> "} 社區(qū) 文章 合集 問答 學習 課程 編程詞典 工具庫 開發(fā)工具 網(wǎng)站源碼 PHP 庫 JS特效 網(wǎng)站素材 擴展插件 AI工具 休閑 游戲下載 游戲教程 簡體中文 簡體中文 English 繁體中文 日本語 ??? Melayu Fran?ais Deutsch Login singup 首頁 后端開發(fā) php教程 40+ Useful Php tips for beginners ? Part 1 40+ Useful Php tips for beginners ? Part 1 WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB Jun 23, 2016 pm 02:37 PM PHP學習指南 http://www.binarytides.com/category/php-2/tutorial/ In this series we are going to look into some useful tips and techniques that can be used to improve and optimise your php code. Note that these php tips are meant for beginners and not those who are already using mvc frameworks etc. The Techniques 1. Do not use relative paths , instead define a ROOT path Its quite common to see such lines : require_once('http://www.cnblogs.com/lib/some_class.php'); This approach has many drawbacks : It first searches for directories specified in the include paths of php , then looks from the current directory. So many directories are checked. When a script is included by another script in a different directory , its base directory changes to that of the including script. Another issue , is that when a script is being run from cron , it may not have its parent directory as the working directory. So its a good idea to have absolute paths : define('ROOT' , '/var/www/project/');require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code Now this is an absolute path and will always stay constant. But we can improve this further. The directory /var/www/project can change , so do we change it everytime ? No instead we make it portable using magic constants like __FILE__ . Take a closer look : //suppose your script is /var/www/project/index.php//Then __FILE__ will always have that full path.define('ROOT' , pathinfo(__FILE__, PATHINFO_DIRNAME));require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code So now even if you shift your project to a different directory , like moving it to an online server , the same code will run without any changes. 2. Dont use require , include , require_once or include_once Your script could be including various files on top , like class libraries , files for utility and helper functions etc like this : require_once('lib/Database.php');require_once('lib/Mail.php');require_once('helpers/utitlity_functions.php'); This is rather primitive. The code needs to be more flexible. Write up helper functions to include things more easily. Lets take an example : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); require_once( $path ); }load_class('Database');load_class('Mail'); See any difference ? You must. It does not need any more explanation. You can improve this further if you wish to like this : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); if(file_exists($path)) { require_once( $path ); }} There are a lot of things that can be done with this : Search multiple directories for the same class file. Change the directory containing class files easily , without breaking the code anywhere. Use similar functions for loading files that contain helper functions , html content etc. 3. Maintain debugging environment in your application During development we echo database queries , dump variables which are creating problems , and then once the problem is solved , we comment them or erase them. But its a good idea to let everything stay and help in the long run On your development machine you can do this : define('ENVIRONMENT' , 'development');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } And on the server you can do this : define('ENVIRONMENT' , 'production');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } 4. Propagate status messages via session Status messages are those messages that are generated after doing a task. <?phpif($wrong_username || $wrong_password){ $msg = 'Invalid username or password';}?><html><body><?php echo $msg; ?><form>...</form></body></html> Code like that is common. Using variables to show status messages has limitations. They cannot be send via redirects (unless you propagate them as GET variables to the next script , which is very silly). In large scripts there might be multiple messages etc. Best way is to use session to propagate them (even if on same page). For this there has to be a session_start on every page. function set_flash($msg){ $_SESSION['message'] = $msg;}function get_flash(){ $msg = $_SESSION['message']; unset($_SESSION['message']); return $msg;} and in your script : <?phpif($wrong_username || $wrong_password){ set_flash('Invalid username or password');}?><html><body>Status is : <?php echo get_flash(); ?><form>...</form></body></html> 5. Make your functions flexible function add_to_cart($item_id , $qty){ $_SESSION['cart'][$item_id] = $qty;}add_to_cart( 'IPHONE3' , 2 ); When adding a single item you use the above function. When adding multiple items , will you create another function ? NO. Just make the function flexible enough to take different kinds of parameters. Have a closer look : function add_to_cart($item_id , $qty){ if(!is_array($item_id)) { $_SESSION['cart'][$item_id] = $qty; } else { foreach($item_id as $i_id => $qty) { $_SESSION['cart'][$i_id] = $qty; } }}add_to_cart( 'IPHONE3' , 2 );add_to_cart( array('IPHONE3' => 2 , 'IPAD' => 5) ); So now the same function can accept different kinds of output. The above can be applied in lots of places to make your code more agile. 6. Omit the closing php tag if it is the last thing in a script I wonder why this tip is omitted from so many blog posts on php tips. <?phpecho "Hello";//Now dont close this tag This will save you lots of problem. Lets take an example : A class file super_class.php <?phpclass super_class{ function super_function() { //super code }}?>//super extra character after the closing tag Now index.php require_once('super_class.php');//echo an image or pdf , or set the cookies or session data And you will get Headers already send error. Why ? because the "super extra character" has been echoed , and all headers went along with that. Now you start debugging. You may have to waste many hours to find the super extra space. Hence make it a habit to omit the closing tag : <?phpclass super_class{ function super_function() { //super code }}//No closing tag Thats better. 7. Collect all output at one place , and output at one shot to the browser This is called output buffering. Lets say you have been echoing content from different functions like this : function print_header(){ echo "<div id='header'>Site Log and Login links</div>";}function print_footer(){ echo "<div id='footer'>Site was made by me</div>";}print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}print_footer(); Instead of doing like that , first collect all output in one place. You can either store it inside variables in the functions or use ob_start and ob_end_clean. So now it should look like function print_header(){ $o = "<div id='header'>Site Log and Login links</div>"; return $o;}function print_footer(){ $o = "<div id='footer'>Site was made by me</div>"; return $o;}echo print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}echo print_footer(); So why should you do output buffering : You can change the output just before sending it to browser if you need to. Think about doing some str_replaces , or may be preg_replaces or may be adding some extra html at the end like profiler/debugger output Its a bad idea to send output to browser and do php processing at the same time. Have you ever seen a website where there is a Fatal error in the sidebar or in a box in the middle of the screen. You know why that happens ? Because processing and output are being mixed. 8. Send correct mime types via header when outputting non-html content Lets echo some xml. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataecho $xml; Works fine. But it needs some improvement. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataheader("content-type: text/xml");echo $xml; Note that header line. That line tells the browser that the content is xml content. So the browser can handle it correctly. Many javascript libraries also rely on header information. Similarly for javascript , css , jpg image , png image : Javascript header("content-type: application/x-javascript");echo "var a = 10"; CSS header("content-type: text/css");echo "#div id { background:#000; }"; 9. Set the correct character encoding for a mysql connection Ever faced a problem that unicode/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation. $host = 'localhost';$username = 'root';$password = 'super_secret';//Attempt to connect to database$c = mysqli_connect($host , $username, $password); //Check connection validityif (!$c) { die ("Could not connect to the database host: <br />". mysqli_connect_error());} //Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){ die('mysqli_set_charset() failed');} Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application. Otherwise what will happen ? You will see lots of boxes and ???????? in non english text. 10. Use htmlentities with the correct characterset option Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc. $value = htmlentities($this->value , ENT_QUOTES , 'UTF-8'); Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual. 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php. Use apache mod_gzip/mod_deflate to compress content via the .htaccess file. 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php. $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= "'$image' ,";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;//Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,]; Be smart. use json_encode : $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;//Output is : var images = ["myself.png","friends.png","colleagues.png"] Isn't that neat ? 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of "debugging" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on. Make sure that your application is as intelligent as possible and reports the most important information in the shortest time. $contents = "All the content";$file_path = "/var/www/project/content.txt";file_put_contents($file_path , $contents); That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons : Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file. $contents = "All the content";$dir = '/var/www/project';$file_path = $dir . "/content.txt";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die("Directory $dir is not writable, or does not exist. Please check");} By doing this you get the accurate information that where is a file write failing and why 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are "accessible" outside. Otherwise for example the files may be created by "php" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on. // Read and write for owner, read for everybody elsechmod("/somedir/somefile", 0644);// Everything for owner, read and execute for otherschmod("/somedir/somefile", 0755); 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ //Save the things} The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this : if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ //Save the things} Now you are free from the value the submit button 16. Use static variables in function where they always have same value //Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} Instead use static variables as : //Delay for some timefunction delay(){ static $sync_delay = null; if($sync_delay == null) { $sync_delay = get_option('sync_delay'); } echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} 17. Don't use the $_SESSION variable directly Some simple examples are : $_SESSION['username'] = $username;$username = $_SESSION['username']; But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain. Hence use application specific keys with wrapper functions : define('APP_ID' , 'abc_corp_ecommerce');//Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}//Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;} 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like : function utility_a(){ //This function does a utility thing like string processing}function utility_b(){ //This function does nother utility thing like database processing}function utility_c(){ //This function is ...} And you use the function throughout your application freely. You may want to wrap them into a class as static functions : class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}//and call them as $a = Utility::utility_a();$b = Utility::utility_b(); One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else. 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++; Its absolutely a WASTE. Write if($a == true){ $a_count++;} Dont try to make your code shorter by eating up syntax. Rather make your logic shorter. Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this : foreach($arr as $c => $v){ $arr[$c] = trim($v);} But it can more cleaner with array_map : $arr = array_map('trim' , $arr); This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more. 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters. The php filter extension provides simple way to validate or check values as being a valid 'something'. 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate']; Its a good habit. 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded : $db_records_in_array_format; //This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; //2MB moresome_function($cc); //Another 2MB ? The above thing is common when importing a csv file or exporting table to a csv file Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays. Consider passing them by reference , or storing them in a class variable : $a = get_large_array();pass_to_function(&$a); by doing this the same variable (and not its copy) will be available to the function. Check documentation class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { //process $this->a }} unset them as soon as possible , so that memory is freed and rest of the script can relax. Here is a simple demonstration of how assign by reference can save memory in some cases <?phpini_set('display_errors' , true);error_reporting(E_ALL);$a = array();for($i = 0; $i < 100000 ; $i++){ $a[$i] = 'A'.$i;}echo 'Memory usage in MB : '. memory_get_usage() / 1000000 . '<br />';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() / 1000000 . '<br />';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() / 1000000 . '<br />';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() / 1000000 . '<br />'; The output on a typical php 5.4 machine is : Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more. 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this : function add_to_cart(){ $db = new Database(); $db->query("INSERT INTO cart .....");}function empty_cart(){ $db = new Database(); $db->query("DELETE FROM cart .....");} Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory. Use the singleton pattern for special cases like database connection. 26. Avoid direct SQL query , abstract it $query = "INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')";$db->query($query); //call to mysqli_query() The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like: All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries. A very simple example of an activerecord insert function can be like this : function insert_record($table_name , $data){ foreach($data as $key => $value) { //mysqli_real_escape_string $data[$key] = $db->mres($value); } $fields = implode(',' , array_keys($data)); $values = "'" . implode("','" , array_values($data)) . "'"; //Final query $query = "INSERT INTO {$table}($fields) VALUES($values)"; return $db->query($query);}//data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);//perform the INSERT queryinsert_record('users' , $data); The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse). This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise. 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again. Benefits : Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue. Storing session in database makes many other things easier like: Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example : <head> <base href="http://www.domain.com/store/"></head><body> <img src="/static/imghw/default1.png" data-src="happy.jpg" class="lazy" / alt="40+ Useful Php tips for beginners ? Part 1" ></body></html> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories. Lets take an example www.domain.com/store/home.php www.domain.com/store/products/ipad.php In home.php the following can be written : <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> But in ipad.php the links have to be like this : <a href="../home.php">Home</a><a href="ipad.php">Ipad</a> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag. <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products/ipad.php 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing. ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT); On production , the display should be disabled. ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark. After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set. ini_set('log_errors' , '1');ini_set('error_log' , '/path/to/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); Note : 1. The path '/path/to/errors.txt' should be writable by the web server for errors to be logged there. 2. A separate error file is specified , otherwise all logs would go inside the apache/web server error log and get mixed up with other apache errors. 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver). 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like /var/log dont have to searched. 5. Dont set error_reporting to 0. It will not log anything then. Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file. Set 'display_errors=On' in php.ini on development machine On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page. Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work. Set 'display_errors=Off' in php.ini on production machine Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away. 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results. On a 64 bit machine you can see such output. $ php -aInteractive shellphp > echo strtotime("0000-00-00 00:00:00");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600 But on a 32 bit machine all of them would give bool(false). Check here for more. What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines. 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this : set_time_limit(30);//Rest of the code It may not always work. Any execution that happens outside the script via system calls/os functions like socket operations, database operations etc. will not be under control of set_time_limit. So if a database operation takes lot of time or "hangs" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time. 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it. A better solution : /** Method to execute a command in the terminal Uses : 1. system 2. passthru 3. exec 4. shell_exec*/function terminal($command){ //system if(function_exists('system')) { ob_start(); system($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //passthru else if(function_exists('passthru')) { ob_start(); passthru($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //exec else if(function_exists('exec')) { exec($command , $output , $return_var); $output = implode("\n" , $output); } //shell_exec else if(function_exists('shell_exec')) { $output = shell_exec($command) ; } else { $output = 'Command execution not possible on this system'; $return_var = 1; } return array('output' => $output , 'status' => $return_var);}terminal('ls'); The above function will execute the shell command using whichever function is available , keeping your code consistent. 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user. 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise. Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind. 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily. Few popular libraries are : mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference. 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code. Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community. They contain user feedback, expert advice and useful code snippets. So check them out. 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!! 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc. The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more 1. Codeigniter 2. WordPress 3. Joomla CMS 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment. Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster. Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free. 本站聲明 本文內(nèi)容由網(wǎng)友自發(fā)貢獻,版權(quán)歸原作者所有,本站不承擔相應(yīng)法律責任。如您發(fā)現(xiàn)有涉嫌抄襲侵權(quán)的內(nèi)容,請聯(lián)系admin@php.cn 熱AI工具 Undress AI Tool 免費脫衣服圖片 Undresser.AI Undress 人工智能驅(qū)動的應(yīng)用程序,用于創(chuàng)建逼真的裸體照片 AI Clothes Remover 用于從照片中去除衣服的在線人工智能工具。 Clothoff.io AI脫衣機 Video Face Swap 使用我們完全免費的人工智能換臉工具輕松在任何視頻中換臉! 顯示更多 熱門文章 指南:恒星刀片保存文件位置/保存文件丟失/不保存 4 周前 By DDD Oguri Cap Build Guide |漂亮的德比志 2 周前 By Jack chen Agnes Tachyon Build Guide |漂亮的德比志 1 周前 By Jack chen 沙丘:覺醒 - 高級行星學家Quest演練 4 周前 By Jack chen 約會一切:德克和哈珀關(guān)系指南 4 周前 By Jack chen 顯示更多 熱工具 記事本++7.3.1 好用且免費的代碼編輯器 SublimeText3漢化版 中文版,非常好用 禪工作室 13.0.1 功能強大的PHP集成開發(fā)環(huán)境 Dreamweaver CS6 視覺化網(wǎng)頁開發(fā)工具 SublimeText3 Mac版 神級代碼編輯軟件(SublimeText3) 顯示更多 熱門話題 gmail郵箱登陸入口在哪里 8638 17 Java教程 1783 16 CakePHP 教程 1728 56 Laravel 教程 1578 28 PHP教程 1442 31 顯示更多 Related knowledge 如何在PHP中實施身份驗證和授權(quán)? Jun 20, 2025 am 01:03 AM tosecurelyhandleauthenticationandationallizationInphp,lofterTheSesteps:1.AlwaysHashPasswordSwithPassword_hash()andverifyusingspasspassword_verify(),usepreparedStatatementStopreventsqlineptions,andStoreSeruserDatain usseruserDatain $ _sessiveferterlogin.2.implementrole-2.imaccessccsccccccccccccccccccccccccc. 如何在PHP中安全地處理文件上傳? Jun 19, 2025 am 01:05 AM 要安全處理PHP中的文件上傳,核心在于驗證文件類型、重命名文件并限制權(quán)限。1.使用finfo_file()檢查真實MIME類型,僅允許特定類型如image/jpeg;2.用uniqid()生成隨機文件名,存儲至非Web根目錄;3.通過php.ini和HTML表單限制文件大小,設(shè)置目錄權(quán)限為0755;4.使用ClamAV掃描惡意軟件,增強安全性。這些步驟有效防止安全漏洞,確保文件上傳過程安全可靠。 PHP中==(松散比較)和===(嚴格的比較)之間有什么區(qū)別? Jun 19, 2025 am 01:07 AM 在PHP中,==與===的主要區(qū)別在于類型檢查的嚴格程度。==在比較前會進行類型轉(zhuǎn)換,例如5=="5"返回true,而===要求值和類型都相同才會返回true,例如5==="5"返回false。使用場景上,===更安全應(yīng)優(yōu)先使用,==僅在需要類型轉(zhuǎn)換時使用。 如何在PHP( - , *, /,%)中執(zhí)行算術(shù)操作? Jun 19, 2025 pm 05:13 PM PHP中使用基本數(shù)學運算的方法如下:1.加法用 號,支持整數(shù)和浮點數(shù),也可用于變量,字符串數(shù)字會自動轉(zhuǎn)換但不推薦依賴;2.減法用-號,變量同理,類型轉(zhuǎn)換同樣適用;3.乘法用*號,適用于數(shù)字及類似字符串;4.除法用/號,需避免除以零,并注意結(jié)果可能是浮點數(shù);5.取模用%號,可用于判斷奇偶數(shù),處理負數(shù)時余數(shù)符號與被除數(shù)一致。正確使用這些運算符的關(guān)鍵在于確保數(shù)據(jù)類型清晰并處理好邊界情況。 如何與PHP的NOSQL數(shù)據(jù)庫(例如MongoDB,Redis)進行交互? Jun 19, 2025 am 01:07 AM 是的,PHP可以通過特定擴展或庫與MongoDB和Redis等NoSQL數(shù)據(jù)庫交互。首先,使用MongoDBPHP驅(qū)動(通過PECL或Composer安裝)創(chuàng)建客戶端實例并操作數(shù)據(jù)庫及集合,支持插入、查詢、聚合等操作;其次,使用Predis庫或phpredis擴展連接Redis,執(zhí)行鍵值設(shè)置與獲取,推薦phpredis用于高性能場景,Predis則便于快速部署;兩者均適用于生產(chǎn)環(huán)境且文檔完善。 我如何了解最新的PHP開發(fā)和最佳實踐? Jun 23, 2025 am 12:56 AM TostaycurrentwithPHPdevelopmentsandbestpractices,followkeynewssourceslikePHP.netandPHPWeekly,engagewithcommunitiesonforumsandconferences,keeptoolingupdatedandgraduallyadoptnewfeatures,andreadorcontributetoopensourceprojects.First,followreliablesource 什么是PHP,為什么它用于Web開發(fā)? Jun 23, 2025 am 12:55 AM PHPbecamepopularforwebdevelopmentduetoitseaseoflearning,seamlessintegrationwithHTML,widespreadhostingsupport,andalargeecosystemincludingframeworkslikeLaravelandCMSplatformslikeWordPress.Itexcelsinhandlingformsubmissions,managingusersessions,interacti 如何設(shè)置PHP時區(qū)? Jun 25, 2025 am 01:00 AM tosetTherightTimeZoneInphp,restate_default_timezone_set()functionAtthestArtofyourscriptWithavalIdidentIdentifiersuchas'america/new_york'.1.usedate_default_default_timezone_set_set() See all articles
And you will get Headers already send error. Why ? because the \"super extra character\" has been echoed , and all headers went along with that. Now you start debugging. You may have to waste many hours to find the super extra space.<\/p>
Hence make it a habit to omit the closing tag :<\/p>
Thats better.<\/p> 7. Collect all output at one place , and output at one shot to the browser This is called output buffering. Lets say you have been echoing content from different functions like this :<\/p> function print_header(){ echo \"Site Log and Login links<\/div>\";}function print_footer(){ echo \"Site was made by me<\/div>\";}print_header();for($i = 0 ; $i < 100; $i++){ echo \"I is : $i ';}print_footer();<\/pre> Instead of doing like that , first collect all output in one place. You can either store it inside variables in the functions or use ob_start and ob_end_clean. So now it should look like<\/p> function print_header(){ $o = \"Site Log and Login links<\/div>\"; return $o;}function print_footer(){ $o = \"Site was made by me<\/div>\"; return $o;}echo print_header();for($i = 0 ; $i < 100; $i++){ echo \"I is : $i ';}echo print_footer();<\/pre> So why should you do output buffering :<\/p> You can change the output just before sending it to browser if you need to. Think about doing some str_replaces , or may be preg_replaces or may be adding some extra html at the end like profiler\/debugger output Its a bad idea to send output to browser and do php processing at the same time. Have you ever seen a website where there is a Fatal error in the sidebar or in a box in the middle of the screen. You know why that happens ? Because processing and output are being mixed. 8. Send correct mime types via header when outputting non-html content Lets echo some xml.<\/p> $xml = '';$xml = \" 0<\/code><\/response>\";\/\/Send xml dataecho $xml;<\/pre> Works fine. But it needs some improvement.<\/p> $xml = '';$xml = \" 0<\/code><\/response>\";\/\/Send xml dataheader(\"content-type: text\/xml\");echo $xml;<\/pre> Note that header line. That line tells the browser that the content is xml content. So the browser can handle it correctly. Many javascript libraries also rely on header information.<\/p> Similarly for javascript , css , jpg image , png image :<\/p> Javascript<\/p> header(\"content-type: application\/x-javascript\");echo \"var a = 10\";<\/pre> CSS<\/p> header(\"content-type: text\/css\");echo \"#div id { background:#000; }\";<\/pre> 9. Set the correct character encoding for a mysql connection Ever faced a problem that unicode\/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation.<\/p> $host = 'localhost';$username = 'root';$password = 'super_secret';\/\/Attempt to connect to database$c = mysqli_connect($host , $username, $password);\t\t\/\/Check connection validityif (!$c) {\tdie (\"Could not connect to the database host: \". mysqli_connect_error());}\t\t\/\/Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){\tdie('mysqli_set_charset() failed');}<\/pre> Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application.<\/p> Otherwise what will happen ? You will see lots of boxes and ???????? in non english text.<\/p> 10. Use htmlentities with the correct characterset option Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc.<\/p> $value = htmlentities($this->value , ENT_QUOTES , 'UTF-8');<\/pre> Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual.<\/p> 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php.<\/p> Use apache mod_gzip\/mod_deflate to compress content via the .htaccess file.<\/p> 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php.<\/p> $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= \"'$image' ,\";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;\/\/Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,];<\/pre> Be smart. use json_encode :<\/p> $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;\/\/Output is : var images = [\"myself.png\",\"friends.png\",\"colleagues.png\"]<\/pre> Isn't that neat ?<\/p> 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of \"debugging\" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on.<\/p> Make sure that your application is as intelligent as possible and reports the most important information in the shortest time.<\/p> $contents = \"All the content\";$file_path = \"\/var\/www\/project\/content.txt\";file_put_contents($file_path , $contents);<\/pre> That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons :<\/p> Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file.<\/p> $contents = \"All the content\";$dir = '\/var\/www\/project';$file_path = $dir . \"\/content.txt\";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die(\"Directory $dir is not writable, or does not exist. Please check\");}<\/pre> By doing this you get the accurate information that where is a file write failing and why<\/p> 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are \"accessible\" outside. Otherwise for example the files may be created by \"php\" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on.<\/p> \/\/ Read and write for owner, read for everybody elsechmod(\"\/somedir\/somefile\", 0644);\/\/ Everything for owner, read and execute for otherschmod(\"\/somedir\/somefile\", 0755);<\/pre> 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ \/\/Save the things}<\/pre> The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this :<\/p> if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ \/\/Save the things}<\/pre> Now you are free from the value the submit button<\/p> 16. Use static variables in function where they always have same value \/\/Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); \t echo \"Delaying for $sync_delay seconds...\"; sleep($sync_delay); echo \"Done \";}<\/pre> Instead use static variables as :<\/p> \/\/Delay for some timefunction delay(){ static $sync_delay = null;\t if($sync_delay == null) {\t$sync_delay = get_option('sync_delay'); }\t echo \"Delaying for $sync_delay seconds...\"; sleep($sync_delay); echo \"Done \";}<\/pre> 17. Don't use the $_SESSION variable directly Some simple examples are :<\/p> $_SESSION['username'] = $username;$username = $_SESSION['username'];<\/pre> But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain.<\/p> Hence use application specific keys with wrapper functions :<\/p> define('APP_ID' , 'abc_corp_ecommerce');\/\/Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}\/\/Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;}<\/pre> 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like :<\/p> function utility_a(){ \/\/This function does a utility thing like string processing}function utility_b(){ \/\/This function does nother utility thing like database processing}function utility_c(){ \/\/This function is ...}<\/pre> And you use the function throughout your application freely. You may want to wrap them into a class as static functions :<\/p> class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}\/\/and call them as $a = Utility::utility_a();$b = Utility::utility_b();<\/pre> One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else.<\/p> 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++;<\/pre> Its absolutely a WASTE.<\/p> Write<\/p> if($a == true){ $a_count++;}<\/pre> Dont try to make your code shorter by eating up syntax. Rather make your logic shorter.<\/p> Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this :<\/p> foreach($arr as $c => $v){\t$arr[$c] = trim($v);}<\/pre> But it can more cleaner with array_map :<\/p> $arr = array_map('trim' , $arr);<\/pre> This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more.<\/p> 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters.<\/p> The php filter extension provides simple way to validate or check values as being a valid 'something'.<\/p> 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate'];<\/pre> Its a good habit.<\/p> 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose<\/p> 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded :<\/p> $db_records_in_array_format; \/\/This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; \/\/2MB moresome_function($cc); \/\/Another 2MB ?<\/pre> The above thing is common when importing a csv file or exporting table to a csv file<\/p> Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays.<\/p> Consider passing them by reference , or storing them in a class variable :<\/p> $a = get_large_array();pass_to_function(&$a);<\/pre> by doing this the same variable (and not its copy) will be available to the function. Check documentation<\/p> class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { \/\/process $this->a }}<\/pre> unset them as soon as possible , so that memory is freed and rest of the script can relax.<\/p> Here is a simple demonstration of how assign by reference can save memory in some cases<\/p> ';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() \/ 1000000 . '';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() \/ 1000000 . '';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() \/ 1000000 . '';<\/pre> The output on a typical php 5.4 machine is :<\/p> Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 <\/p> So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more.<\/p> 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this :<\/p> function add_to_cart(){ $db = new Database(); $db->query(\"INSERT INTO cart .....\");}function empty_cart(){ $db = new Database(); $db->query(\"DELETE FROM cart .....\");}<\/pre> Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory.<\/p> Use the singleton pattern for special cases like database connection.<\/p> 26. Avoid direct SQL query , abstract it $query = \"INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')\";$db->query($query); \/\/call to mysqli_query()<\/pre> The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like:<\/p> All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord<\/p> It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries.<\/p> A very simple example of an activerecord insert function can be like this :<\/p> function insert_record($table_name , $data){ foreach($data as $key => $value) {\t\/\/mysqli_real_escape_string $data[$key] = $db->mres($value); }\t\t $fields = implode(',' , array_keys($data)); $values = \"'\" . implode(\"','\" , array_values($data)) . \"'\"; \/\/Final query\t $query = \"INSERT INTO {$table}($fields) VALUES($values)\";\t\t return $db->query($query);}\/\/data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);\/\/perform the INSERT queryinsert_record('users' , $data);<\/pre> The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse).<\/p> This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise.<\/p> 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again.<\/p> Benefits :<\/p> Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue.<\/p> Storing session in database makes many other things easier like:<\/p> Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines\/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example :<\/p> <\/head> <\/body><\/html><\/pre> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories.<\/p> Lets take an example<\/p> www.domain.com\/store\/home.php www.domain.com\/store\/products\/ipad.php<\/p> In home.php the following can be written :<\/p> Home<\/a>Ipad<\/a><\/pre> But in ipad.php the links have to be like this :<\/p> Home<\/a>Ipad<\/a><\/pre> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag.<\/p> <\/head>Home<\/a>Ipad<\/a><\/body><\/html><\/pre> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products\/ipad.php<\/p> 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing.<\/p> ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT);<\/pre> On production , the display should be disabled.<\/p> ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark.<\/p> After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set.<\/p> ini_set('log_errors' , '1');ini_set('error_log' , '\/path\/to\/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> Note :<\/p> 1. The path '\/path\/to\/errors.txt' should be writable by the web server for errors to be logged there.<\/p> 2. A separate error file is specified , otherwise all logs would go inside the apache\/web server error log and get mixed up with other apache errors.<\/p> 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver).<\/p> 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like \/var\/log dont have to searched.<\/p> 5. Dont set error_reporting to 0. It will not log anything then.<\/p> Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file.<\/p> Set 'display_errors=On' in php.ini on development machine<\/p> On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page.<\/p> Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work.<\/p> Set 'display_errors=Off' in php.ini on production machine<\/p> Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away.<\/p> 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results.<\/p> On a 64 bit machine you can see such output.<\/p> $ php -aInteractive shellphp > echo strtotime(\"0000-00-00 00:00:00\");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600<\/pre> But on a 32 bit machine all of them would give bool(false). Check here for more.<\/p> What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines.<\/p> 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this :<\/p> set_time_limit(30);\/\/Rest of the code<\/pre> It may not always work. Any execution that happens outside the script via system calls\/os functions like socket operations, database operations etc. will not be under control of set_time_limit.<\/p> So if a database operation takes lot of time or \"hangs\" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time.<\/p> 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it.<\/p> A better solution :<\/p> \/**\tMethod to execute a command in the terminal\tUses :\t1. system\t2. passthru\t3. exec\t4. shell_exec*\/function terminal($command){\t\/\/system\tif(function_exists('system'))\t{\t\tob_start();\t\tsystem($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/passthru\telse if(function_exists('passthru'))\t{\t\tob_start();\t\tpassthru($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/exec\telse if(function_exists('exec'))\t{\t\texec($command , $output , $return_var);\t\t$output = implode(\"\\n\" , $output);\t}\t\/\/shell_exec\telse if(function_exists('shell_exec'))\t{\t\t$output = shell_exec($command) ;\t}\telse\t{\t\t$output = 'Command execution not possible on this system';\t\t$return_var = 1;\t}\treturn array('output' => $output , 'status' => $return_var);}terminal('ls');<\/pre> The above function will execute the shell command using whichever function is available , keeping your code consistent.<\/p> 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user.<\/p> 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise.<\/p> Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind.<\/p> 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily.<\/p> Few popular libraries are :<\/p> mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference.<\/p> 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code.<\/p> Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community.<\/p> They contain user feedback, expert advice and useful code snippets. So check them out.<\/p> 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!!<\/p> 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc.<\/p> The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more<\/p> 1. Codeigniter 2. WordPress 3. Joomla CMS<\/p> 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment.<\/p> Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster.<\/p> Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free.<\/p> "} 社區(qū) 文章 合集 問答 學習 課程 編程詞典 工具庫 開發(fā)工具 網(wǎng)站源碼 PHP 庫 JS特效 網(wǎng)站素材 擴展插件 AI工具 休閑 游戲下載 游戲教程 簡體中文 簡體中文 English 繁體中文 日本語 ??? Melayu Fran?ais Deutsch Login singup 首頁 后端開發(fā) php教程 40+ Useful Php tips for beginners ? Part 1 40+ Useful Php tips for beginners ? Part 1 WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB Jun 23, 2016 pm 02:37 PM PHP學習指南 http://www.binarytides.com/category/php-2/tutorial/ In this series we are going to look into some useful tips and techniques that can be used to improve and optimise your php code. Note that these php tips are meant for beginners and not those who are already using mvc frameworks etc. The Techniques 1. Do not use relative paths , instead define a ROOT path Its quite common to see such lines : require_once('http://www.cnblogs.com/lib/some_class.php'); This approach has many drawbacks : It first searches for directories specified in the include paths of php , then looks from the current directory. So many directories are checked. When a script is included by another script in a different directory , its base directory changes to that of the including script. Another issue , is that when a script is being run from cron , it may not have its parent directory as the working directory. So its a good idea to have absolute paths : define('ROOT' , '/var/www/project/');require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code Now this is an absolute path and will always stay constant. But we can improve this further. The directory /var/www/project can change , so do we change it everytime ? No instead we make it portable using magic constants like __FILE__ . Take a closer look : //suppose your script is /var/www/project/index.php//Then __FILE__ will always have that full path.define('ROOT' , pathinfo(__FILE__, PATHINFO_DIRNAME));require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code So now even if you shift your project to a different directory , like moving it to an online server , the same code will run without any changes. 2. Dont use require , include , require_once or include_once Your script could be including various files on top , like class libraries , files for utility and helper functions etc like this : require_once('lib/Database.php');require_once('lib/Mail.php');require_once('helpers/utitlity_functions.php'); This is rather primitive. The code needs to be more flexible. Write up helper functions to include things more easily. Lets take an example : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); require_once( $path ); }load_class('Database');load_class('Mail'); See any difference ? You must. It does not need any more explanation. You can improve this further if you wish to like this : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); if(file_exists($path)) { require_once( $path ); }} There are a lot of things that can be done with this : Search multiple directories for the same class file. Change the directory containing class files easily , without breaking the code anywhere. Use similar functions for loading files that contain helper functions , html content etc. 3. Maintain debugging environment in your application During development we echo database queries , dump variables which are creating problems , and then once the problem is solved , we comment them or erase them. But its a good idea to let everything stay and help in the long run On your development machine you can do this : define('ENVIRONMENT' , 'development');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } And on the server you can do this : define('ENVIRONMENT' , 'production');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } 4. Propagate status messages via session Status messages are those messages that are generated after doing a task. <?phpif($wrong_username || $wrong_password){ $msg = 'Invalid username or password';}?><html><body><?php echo $msg; ?><form>...</form></body></html> Code like that is common. Using variables to show status messages has limitations. They cannot be send via redirects (unless you propagate them as GET variables to the next script , which is very silly). In large scripts there might be multiple messages etc. Best way is to use session to propagate them (even if on same page). For this there has to be a session_start on every page. function set_flash($msg){ $_SESSION['message'] = $msg;}function get_flash(){ $msg = $_SESSION['message']; unset($_SESSION['message']); return $msg;} and in your script : <?phpif($wrong_username || $wrong_password){ set_flash('Invalid username or password');}?><html><body>Status is : <?php echo get_flash(); ?><form>...</form></body></html> 5. Make your functions flexible function add_to_cart($item_id , $qty){ $_SESSION['cart'][$item_id] = $qty;}add_to_cart( 'IPHONE3' , 2 ); When adding a single item you use the above function. When adding multiple items , will you create another function ? NO. Just make the function flexible enough to take different kinds of parameters. Have a closer look : function add_to_cart($item_id , $qty){ if(!is_array($item_id)) { $_SESSION['cart'][$item_id] = $qty; } else { foreach($item_id as $i_id => $qty) { $_SESSION['cart'][$i_id] = $qty; } }}add_to_cart( 'IPHONE3' , 2 );add_to_cart( array('IPHONE3' => 2 , 'IPAD' => 5) ); So now the same function can accept different kinds of output. The above can be applied in lots of places to make your code more agile. 6. Omit the closing php tag if it is the last thing in a script I wonder why this tip is omitted from so many blog posts on php tips. <?phpecho "Hello";//Now dont close this tag This will save you lots of problem. Lets take an example : A class file super_class.php <?phpclass super_class{ function super_function() { //super code }}?>//super extra character after the closing tag Now index.php require_once('super_class.php');//echo an image or pdf , or set the cookies or session data And you will get Headers already send error. Why ? because the "super extra character" has been echoed , and all headers went along with that. Now you start debugging. You may have to waste many hours to find the super extra space. Hence make it a habit to omit the closing tag : <?phpclass super_class{ function super_function() { //super code }}//No closing tag Thats better. 7. Collect all output at one place , and output at one shot to the browser This is called output buffering. Lets say you have been echoing content from different functions like this : function print_header(){ echo "<div id='header'>Site Log and Login links</div>";}function print_footer(){ echo "<div id='footer'>Site was made by me</div>";}print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}print_footer(); Instead of doing like that , first collect all output in one place. You can either store it inside variables in the functions or use ob_start and ob_end_clean. So now it should look like function print_header(){ $o = "<div id='header'>Site Log and Login links</div>"; return $o;}function print_footer(){ $o = "<div id='footer'>Site was made by me</div>"; return $o;}echo print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}echo print_footer(); So why should you do output buffering : You can change the output just before sending it to browser if you need to. Think about doing some str_replaces , or may be preg_replaces or may be adding some extra html at the end like profiler/debugger output Its a bad idea to send output to browser and do php processing at the same time. Have you ever seen a website where there is a Fatal error in the sidebar or in a box in the middle of the screen. You know why that happens ? Because processing and output are being mixed. 8. Send correct mime types via header when outputting non-html content Lets echo some xml. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataecho $xml; Works fine. But it needs some improvement. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataheader("content-type: text/xml");echo $xml; Note that header line. That line tells the browser that the content is xml content. So the browser can handle it correctly. Many javascript libraries also rely on header information. Similarly for javascript , css , jpg image , png image : Javascript header("content-type: application/x-javascript");echo "var a = 10"; CSS header("content-type: text/css");echo "#div id { background:#000; }"; 9. Set the correct character encoding for a mysql connection Ever faced a problem that unicode/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation. $host = 'localhost';$username = 'root';$password = 'super_secret';//Attempt to connect to database$c = mysqli_connect($host , $username, $password); //Check connection validityif (!$c) { die ("Could not connect to the database host: <br />". mysqli_connect_error());} //Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){ die('mysqli_set_charset() failed');} Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application. Otherwise what will happen ? You will see lots of boxes and ???????? in non english text. 10. Use htmlentities with the correct characterset option Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc. $value = htmlentities($this->value , ENT_QUOTES , 'UTF-8'); Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual. 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php. Use apache mod_gzip/mod_deflate to compress content via the .htaccess file. 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php. $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= "'$image' ,";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;//Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,]; Be smart. use json_encode : $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;//Output is : var images = ["myself.png","friends.png","colleagues.png"] Isn't that neat ? 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of "debugging" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on. Make sure that your application is as intelligent as possible and reports the most important information in the shortest time. $contents = "All the content";$file_path = "/var/www/project/content.txt";file_put_contents($file_path , $contents); That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons : Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file. $contents = "All the content";$dir = '/var/www/project';$file_path = $dir . "/content.txt";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die("Directory $dir is not writable, or does not exist. Please check");} By doing this you get the accurate information that where is a file write failing and why 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are "accessible" outside. Otherwise for example the files may be created by "php" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on. // Read and write for owner, read for everybody elsechmod("/somedir/somefile", 0644);// Everything for owner, read and execute for otherschmod("/somedir/somefile", 0755); 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ //Save the things} The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this : if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ //Save the things} Now you are free from the value the submit button 16. Use static variables in function where they always have same value //Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} Instead use static variables as : //Delay for some timefunction delay(){ static $sync_delay = null; if($sync_delay == null) { $sync_delay = get_option('sync_delay'); } echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} 17. Don't use the $_SESSION variable directly Some simple examples are : $_SESSION['username'] = $username;$username = $_SESSION['username']; But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain. Hence use application specific keys with wrapper functions : define('APP_ID' , 'abc_corp_ecommerce');//Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}//Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;} 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like : function utility_a(){ //This function does a utility thing like string processing}function utility_b(){ //This function does nother utility thing like database processing}function utility_c(){ //This function is ...} And you use the function throughout your application freely. You may want to wrap them into a class as static functions : class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}//and call them as $a = Utility::utility_a();$b = Utility::utility_b(); One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else. 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++; Its absolutely a WASTE. Write if($a == true){ $a_count++;} Dont try to make your code shorter by eating up syntax. Rather make your logic shorter. Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this : foreach($arr as $c => $v){ $arr[$c] = trim($v);} But it can more cleaner with array_map : $arr = array_map('trim' , $arr); This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more. 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters. The php filter extension provides simple way to validate or check values as being a valid 'something'. 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate']; Its a good habit. 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded : $db_records_in_array_format; //This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; //2MB moresome_function($cc); //Another 2MB ? The above thing is common when importing a csv file or exporting table to a csv file Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays. Consider passing them by reference , or storing them in a class variable : $a = get_large_array();pass_to_function(&$a); by doing this the same variable (and not its copy) will be available to the function. Check documentation class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { //process $this->a }} unset them as soon as possible , so that memory is freed and rest of the script can relax. Here is a simple demonstration of how assign by reference can save memory in some cases <?phpini_set('display_errors' , true);error_reporting(E_ALL);$a = array();for($i = 0; $i < 100000 ; $i++){ $a[$i] = 'A'.$i;}echo 'Memory usage in MB : '. memory_get_usage() / 1000000 . '<br />';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() / 1000000 . '<br />';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() / 1000000 . '<br />';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() / 1000000 . '<br />'; The output on a typical php 5.4 machine is : Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more. 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this : function add_to_cart(){ $db = new Database(); $db->query("INSERT INTO cart .....");}function empty_cart(){ $db = new Database(); $db->query("DELETE FROM cart .....");} Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory. Use the singleton pattern for special cases like database connection. 26. Avoid direct SQL query , abstract it $query = "INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')";$db->query($query); //call to mysqli_query() The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like: All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries. A very simple example of an activerecord insert function can be like this : function insert_record($table_name , $data){ foreach($data as $key => $value) { //mysqli_real_escape_string $data[$key] = $db->mres($value); } $fields = implode(',' , array_keys($data)); $values = "'" . implode("','" , array_values($data)) . "'"; //Final query $query = "INSERT INTO {$table}($fields) VALUES($values)"; return $db->query($query);}//data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);//perform the INSERT queryinsert_record('users' , $data); The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse). This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise. 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again. Benefits : Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue. Storing session in database makes many other things easier like: Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example : <head> <base href="http://www.domain.com/store/"></head><body> <img src="/static/imghw/default1.png" data-src="happy.jpg" class="lazy" / alt="40+ Useful Php tips for beginners ? Part 1" ></body></html> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories. Lets take an example www.domain.com/store/home.php www.domain.com/store/products/ipad.php In home.php the following can be written : <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> But in ipad.php the links have to be like this : <a href="../home.php">Home</a><a href="ipad.php">Ipad</a> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag. <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products/ipad.php 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing. ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT); On production , the display should be disabled. ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark. After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set. ini_set('log_errors' , '1');ini_set('error_log' , '/path/to/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); Note : 1. The path '/path/to/errors.txt' should be writable by the web server for errors to be logged there. 2. A separate error file is specified , otherwise all logs would go inside the apache/web server error log and get mixed up with other apache errors. 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver). 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like /var/log dont have to searched. 5. Dont set error_reporting to 0. It will not log anything then. Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file. Set 'display_errors=On' in php.ini on development machine On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page. Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work. Set 'display_errors=Off' in php.ini on production machine Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away. 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results. On a 64 bit machine you can see such output. $ php -aInteractive shellphp > echo strtotime("0000-00-00 00:00:00");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600 But on a 32 bit machine all of them would give bool(false). Check here for more. What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines. 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this : set_time_limit(30);//Rest of the code It may not always work. Any execution that happens outside the script via system calls/os functions like socket operations, database operations etc. will not be under control of set_time_limit. So if a database operation takes lot of time or "hangs" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time. 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it. A better solution : /** Method to execute a command in the terminal Uses : 1. system 2. passthru 3. exec 4. shell_exec*/function terminal($command){ //system if(function_exists('system')) { ob_start(); system($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //passthru else if(function_exists('passthru')) { ob_start(); passthru($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //exec else if(function_exists('exec')) { exec($command , $output , $return_var); $output = implode("\n" , $output); } //shell_exec else if(function_exists('shell_exec')) { $output = shell_exec($command) ; } else { $output = 'Command execution not possible on this system'; $return_var = 1; } return array('output' => $output , 'status' => $return_var);}terminal('ls'); The above function will execute the shell command using whichever function is available , keeping your code consistent. 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user. 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise. Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind. 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily. Few popular libraries are : mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference. 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code. Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community. They contain user feedback, expert advice and useful code snippets. So check them out. 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!! 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc. The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more 1. Codeigniter 2. WordPress 3. Joomla CMS 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment. Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster. Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free. 本站聲明 本文內(nèi)容由網(wǎng)友自發(fā)貢獻,版權(quán)歸原作者所有,本站不承擔相應(yīng)法律責任。如您發(fā)現(xiàn)有涉嫌抄襲侵權(quán)的內(nèi)容,請聯(lián)系admin@php.cn 熱AI工具 Undress AI Tool 免費脫衣服圖片 Undresser.AI Undress 人工智能驅(qū)動的應(yīng)用程序,用于創(chuàng)建逼真的裸體照片 AI Clothes Remover 用于從照片中去除衣服的在線人工智能工具。 Clothoff.io AI脫衣機 Video Face Swap 使用我們完全免費的人工智能換臉工具輕松在任何視頻中換臉! 顯示更多 熱門文章 指南:恒星刀片保存文件位置/保存文件丟失/不保存 4 周前 By DDD Oguri Cap Build Guide |漂亮的德比志 2 周前 By Jack chen Agnes Tachyon Build Guide |漂亮的德比志 1 周前 By Jack chen 沙丘:覺醒 - 高級行星學家Quest演練 4 周前 By Jack chen 約會一切:德克和哈珀關(guān)系指南 4 周前 By Jack chen 顯示更多 熱工具 記事本++7.3.1 好用且免費的代碼編輯器 SublimeText3漢化版 中文版,非常好用 禪工作室 13.0.1 功能強大的PHP集成開發(fā)環(huán)境 Dreamweaver CS6 視覺化網(wǎng)頁開發(fā)工具 SublimeText3 Mac版 神級代碼編輯軟件(SublimeText3) 顯示更多 熱門話題 gmail郵箱登陸入口在哪里 8638 17 Java教程 1783 16 CakePHP 教程 1728 56 Laravel 教程 1578 28 PHP教程 1442 31 顯示更多 Related knowledge 如何在PHP中實施身份驗證和授權(quán)? Jun 20, 2025 am 01:03 AM tosecurelyhandleauthenticationandationallizationInphp,lofterTheSesteps:1.AlwaysHashPasswordSwithPassword_hash()andverifyusingspasspassword_verify(),usepreparedStatatementStopreventsqlineptions,andStoreSeruserDatain usseruserDatain $ _sessiveferterlogin.2.implementrole-2.imaccessccsccccccccccccccccccccccccc. 如何在PHP中安全地處理文件上傳? Jun 19, 2025 am 01:05 AM 要安全處理PHP中的文件上傳,核心在于驗證文件類型、重命名文件并限制權(quán)限。1.使用finfo_file()檢查真實MIME類型,僅允許特定類型如image/jpeg;2.用uniqid()生成隨機文件名,存儲至非Web根目錄;3.通過php.ini和HTML表單限制文件大小,設(shè)置目錄權(quán)限為0755;4.使用ClamAV掃描惡意軟件,增強安全性。這些步驟有效防止安全漏洞,確保文件上傳過程安全可靠。 PHP中==(松散比較)和===(嚴格的比較)之間有什么區(qū)別? Jun 19, 2025 am 01:07 AM 在PHP中,==與===的主要區(qū)別在于類型檢查的嚴格程度。==在比較前會進行類型轉(zhuǎn)換,例如5=="5"返回true,而===要求值和類型都相同才會返回true,例如5==="5"返回false。使用場景上,===更安全應(yīng)優(yōu)先使用,==僅在需要類型轉(zhuǎn)換時使用。 如何在PHP( - , *, /,%)中執(zhí)行算術(shù)操作? Jun 19, 2025 pm 05:13 PM PHP中使用基本數(shù)學運算的方法如下:1.加法用 號,支持整數(shù)和浮點數(shù),也可用于變量,字符串數(shù)字會自動轉(zhuǎn)換但不推薦依賴;2.減法用-號,變量同理,類型轉(zhuǎn)換同樣適用;3.乘法用*號,適用于數(shù)字及類似字符串;4.除法用/號,需避免除以零,并注意結(jié)果可能是浮點數(shù);5.取模用%號,可用于判斷奇偶數(shù),處理負數(shù)時余數(shù)符號與被除數(shù)一致。正確使用這些運算符的關(guān)鍵在于確保數(shù)據(jù)類型清晰并處理好邊界情況。 如何與PHP的NOSQL數(shù)據(jù)庫(例如MongoDB,Redis)進行交互? Jun 19, 2025 am 01:07 AM 是的,PHP可以通過特定擴展或庫與MongoDB和Redis等NoSQL數(shù)據(jù)庫交互。首先,使用MongoDBPHP驅(qū)動(通過PECL或Composer安裝)創(chuàng)建客戶端實例并操作數(shù)據(jù)庫及集合,支持插入、查詢、聚合等操作;其次,使用Predis庫或phpredis擴展連接Redis,執(zhí)行鍵值設(shè)置與獲取,推薦phpredis用于高性能場景,Predis則便于快速部署;兩者均適用于生產(chǎn)環(huán)境且文檔完善。 我如何了解最新的PHP開發(fā)和最佳實踐? Jun 23, 2025 am 12:56 AM TostaycurrentwithPHPdevelopmentsandbestpractices,followkeynewssourceslikePHP.netandPHPWeekly,engagewithcommunitiesonforumsandconferences,keeptoolingupdatedandgraduallyadoptnewfeatures,andreadorcontributetoopensourceprojects.First,followreliablesource 什么是PHP,為什么它用于Web開發(fā)? Jun 23, 2025 am 12:55 AM PHPbecamepopularforwebdevelopmentduetoitseaseoflearning,seamlessintegrationwithHTML,widespreadhostingsupport,andalargeecosystemincludingframeworkslikeLaravelandCMSplatformslikeWordPress.Itexcelsinhandlingformsubmissions,managingusersessions,interacti 如何設(shè)置PHP時區(qū)? Jun 25, 2025 am 01:00 AM tosetTherightTimeZoneInphp,restate_default_timezone_set()functionAtthestArtofyourscriptWithavalIdidentIdentifiersuchas'america/new_york'.1.usedate_default_default_timezone_set_set() See all articles
Thats better.<\/p> 7. Collect all output at one place , and output at one shot to the browser
This is called output buffering. Lets say you have been echoing content from different functions like this :<\/p>
function print_header(){ echo \"Site Log and Login links<\/div>\";}function print_footer(){ echo \"Site was made by me<\/div>\";}print_header();for($i = 0 ; $i < 100; $i++){ echo \"I is : $i ';}print_footer();<\/pre> Instead of doing like that , first collect all output in one place. You can either store it inside variables in the functions or use ob_start and ob_end_clean. So now it should look like<\/p> function print_header(){ $o = \"Site Log and Login links<\/div>\"; return $o;}function print_footer(){ $o = \"Site was made by me<\/div>\"; return $o;}echo print_header();for($i = 0 ; $i < 100; $i++){ echo \"I is : $i ';}echo print_footer();<\/pre> So why should you do output buffering :<\/p> You can change the output just before sending it to browser if you need to. Think about doing some str_replaces , or may be preg_replaces or may be adding some extra html at the end like profiler\/debugger output Its a bad idea to send output to browser and do php processing at the same time. Have you ever seen a website where there is a Fatal error in the sidebar or in a box in the middle of the screen. You know why that happens ? Because processing and output are being mixed. 8. Send correct mime types via header when outputting non-html content Lets echo some xml.<\/p> $xml = '';$xml = \" 0<\/code><\/response>\";\/\/Send xml dataecho $xml;<\/pre> Works fine. But it needs some improvement.<\/p> $xml = '';$xml = \" 0<\/code><\/response>\";\/\/Send xml dataheader(\"content-type: text\/xml\");echo $xml;<\/pre> Note that header line. That line tells the browser that the content is xml content. So the browser can handle it correctly. Many javascript libraries also rely on header information.<\/p> Similarly for javascript , css , jpg image , png image :<\/p> Javascript<\/p> header(\"content-type: application\/x-javascript\");echo \"var a = 10\";<\/pre> CSS<\/p> header(\"content-type: text\/css\");echo \"#div id { background:#000; }\";<\/pre> 9. Set the correct character encoding for a mysql connection Ever faced a problem that unicode\/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation.<\/p> $host = 'localhost';$username = 'root';$password = 'super_secret';\/\/Attempt to connect to database$c = mysqli_connect($host , $username, $password);\t\t\/\/Check connection validityif (!$c) {\tdie (\"Could not connect to the database host: \". mysqli_connect_error());}\t\t\/\/Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){\tdie('mysqli_set_charset() failed');}<\/pre> Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application.<\/p> Otherwise what will happen ? You will see lots of boxes and ???????? in non english text.<\/p> 10. Use htmlentities with the correct characterset option Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc.<\/p> $value = htmlentities($this->value , ENT_QUOTES , 'UTF-8');<\/pre> Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual.<\/p> 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php.<\/p> Use apache mod_gzip\/mod_deflate to compress content via the .htaccess file.<\/p> 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php.<\/p> $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= \"'$image' ,\";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;\/\/Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,];<\/pre> Be smart. use json_encode :<\/p> $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;\/\/Output is : var images = [\"myself.png\",\"friends.png\",\"colleagues.png\"]<\/pre> Isn't that neat ?<\/p> 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of \"debugging\" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on.<\/p> Make sure that your application is as intelligent as possible and reports the most important information in the shortest time.<\/p> $contents = \"All the content\";$file_path = \"\/var\/www\/project\/content.txt\";file_put_contents($file_path , $contents);<\/pre> That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons :<\/p> Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file.<\/p> $contents = \"All the content\";$dir = '\/var\/www\/project';$file_path = $dir . \"\/content.txt\";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die(\"Directory $dir is not writable, or does not exist. Please check\");}<\/pre> By doing this you get the accurate information that where is a file write failing and why<\/p> 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are \"accessible\" outside. Otherwise for example the files may be created by \"php\" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on.<\/p> \/\/ Read and write for owner, read for everybody elsechmod(\"\/somedir\/somefile\", 0644);\/\/ Everything for owner, read and execute for otherschmod(\"\/somedir\/somefile\", 0755);<\/pre> 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ \/\/Save the things}<\/pre> The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this :<\/p> if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ \/\/Save the things}<\/pre> Now you are free from the value the submit button<\/p> 16. Use static variables in function where they always have same value \/\/Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); \t echo \"Delaying for $sync_delay seconds...\"; sleep($sync_delay); echo \"Done \";}<\/pre> Instead use static variables as :<\/p> \/\/Delay for some timefunction delay(){ static $sync_delay = null;\t if($sync_delay == null) {\t$sync_delay = get_option('sync_delay'); }\t echo \"Delaying for $sync_delay seconds...\"; sleep($sync_delay); echo \"Done \";}<\/pre> 17. Don't use the $_SESSION variable directly Some simple examples are :<\/p> $_SESSION['username'] = $username;$username = $_SESSION['username'];<\/pre> But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain.<\/p> Hence use application specific keys with wrapper functions :<\/p> define('APP_ID' , 'abc_corp_ecommerce');\/\/Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}\/\/Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;}<\/pre> 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like :<\/p> function utility_a(){ \/\/This function does a utility thing like string processing}function utility_b(){ \/\/This function does nother utility thing like database processing}function utility_c(){ \/\/This function is ...}<\/pre> And you use the function throughout your application freely. You may want to wrap them into a class as static functions :<\/p> class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}\/\/and call them as $a = Utility::utility_a();$b = Utility::utility_b();<\/pre> One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else.<\/p> 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++;<\/pre> Its absolutely a WASTE.<\/p> Write<\/p> if($a == true){ $a_count++;}<\/pre> Dont try to make your code shorter by eating up syntax. Rather make your logic shorter.<\/p> Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this :<\/p> foreach($arr as $c => $v){\t$arr[$c] = trim($v);}<\/pre> But it can more cleaner with array_map :<\/p> $arr = array_map('trim' , $arr);<\/pre> This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more.<\/p> 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters.<\/p> The php filter extension provides simple way to validate or check values as being a valid 'something'.<\/p> 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate'];<\/pre> Its a good habit.<\/p> 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose<\/p> 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded :<\/p> $db_records_in_array_format; \/\/This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; \/\/2MB moresome_function($cc); \/\/Another 2MB ?<\/pre> The above thing is common when importing a csv file or exporting table to a csv file<\/p> Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays.<\/p> Consider passing them by reference , or storing them in a class variable :<\/p> $a = get_large_array();pass_to_function(&$a);<\/pre> by doing this the same variable (and not its copy) will be available to the function. Check documentation<\/p> class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { \/\/process $this->a }}<\/pre> unset them as soon as possible , so that memory is freed and rest of the script can relax.<\/p> Here is a simple demonstration of how assign by reference can save memory in some cases<\/p> ';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() \/ 1000000 . '';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() \/ 1000000 . '';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() \/ 1000000 . '';<\/pre> The output on a typical php 5.4 machine is :<\/p> Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 <\/p> So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more.<\/p> 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this :<\/p> function add_to_cart(){ $db = new Database(); $db->query(\"INSERT INTO cart .....\");}function empty_cart(){ $db = new Database(); $db->query(\"DELETE FROM cart .....\");}<\/pre> Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory.<\/p> Use the singleton pattern for special cases like database connection.<\/p> 26. Avoid direct SQL query , abstract it $query = \"INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')\";$db->query($query); \/\/call to mysqli_query()<\/pre> The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like:<\/p> All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord<\/p> It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries.<\/p> A very simple example of an activerecord insert function can be like this :<\/p> function insert_record($table_name , $data){ foreach($data as $key => $value) {\t\/\/mysqli_real_escape_string $data[$key] = $db->mres($value); }\t\t $fields = implode(',' , array_keys($data)); $values = \"'\" . implode(\"','\" , array_values($data)) . \"'\"; \/\/Final query\t $query = \"INSERT INTO {$table}($fields) VALUES($values)\";\t\t return $db->query($query);}\/\/data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);\/\/perform the INSERT queryinsert_record('users' , $data);<\/pre> The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse).<\/p> This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise.<\/p> 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again.<\/p> Benefits :<\/p> Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue.<\/p> Storing session in database makes many other things easier like:<\/p> Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines\/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example :<\/p> <\/head> <\/body><\/html><\/pre> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories.<\/p> Lets take an example<\/p> www.domain.com\/store\/home.php www.domain.com\/store\/products\/ipad.php<\/p> In home.php the following can be written :<\/p> Home<\/a>Ipad<\/a><\/pre> But in ipad.php the links have to be like this :<\/p> Home<\/a>Ipad<\/a><\/pre> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag.<\/p> <\/head>Home<\/a>Ipad<\/a><\/body><\/html><\/pre> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products\/ipad.php<\/p> 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing.<\/p> ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT);<\/pre> On production , the display should be disabled.<\/p> ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark.<\/p> After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set.<\/p> ini_set('log_errors' , '1');ini_set('error_log' , '\/path\/to\/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> Note :<\/p> 1. The path '\/path\/to\/errors.txt' should be writable by the web server for errors to be logged there.<\/p> 2. A separate error file is specified , otherwise all logs would go inside the apache\/web server error log and get mixed up with other apache errors.<\/p> 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver).<\/p> 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like \/var\/log dont have to searched.<\/p> 5. Dont set error_reporting to 0. It will not log anything then.<\/p> Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file.<\/p> Set 'display_errors=On' in php.ini on development machine<\/p> On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page.<\/p> Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work.<\/p> Set 'display_errors=Off' in php.ini on production machine<\/p> Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away.<\/p> 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results.<\/p> On a 64 bit machine you can see such output.<\/p> $ php -aInteractive shellphp > echo strtotime(\"0000-00-00 00:00:00\");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600<\/pre> But on a 32 bit machine all of them would give bool(false). Check here for more.<\/p> What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines.<\/p> 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this :<\/p> set_time_limit(30);\/\/Rest of the code<\/pre> It may not always work. Any execution that happens outside the script via system calls\/os functions like socket operations, database operations etc. will not be under control of set_time_limit.<\/p> So if a database operation takes lot of time or \"hangs\" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time.<\/p> 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it.<\/p> A better solution :<\/p> \/**\tMethod to execute a command in the terminal\tUses :\t1. system\t2. passthru\t3. exec\t4. shell_exec*\/function terminal($command){\t\/\/system\tif(function_exists('system'))\t{\t\tob_start();\t\tsystem($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/passthru\telse if(function_exists('passthru'))\t{\t\tob_start();\t\tpassthru($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/exec\telse if(function_exists('exec'))\t{\t\texec($command , $output , $return_var);\t\t$output = implode(\"\\n\" , $output);\t}\t\/\/shell_exec\telse if(function_exists('shell_exec'))\t{\t\t$output = shell_exec($command) ;\t}\telse\t{\t\t$output = 'Command execution not possible on this system';\t\t$return_var = 1;\t}\treturn array('output' => $output , 'status' => $return_var);}terminal('ls');<\/pre> The above function will execute the shell command using whichever function is available , keeping your code consistent.<\/p> 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user.<\/p> 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise.<\/p> Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind.<\/p> 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily.<\/p> Few popular libraries are :<\/p> mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference.<\/p> 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code.<\/p> Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community.<\/p> They contain user feedback, expert advice and useful code snippets. So check them out.<\/p> 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!!<\/p> 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc.<\/p> The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more<\/p> 1. Codeigniter 2. WordPress 3. Joomla CMS<\/p> 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment.<\/p> Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster.<\/p> Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free.<\/p> "} 社區(qū) 文章 合集 問答 學習 課程 編程詞典 工具庫 開發(fā)工具 網(wǎng)站源碼 PHP 庫 JS特效 網(wǎng)站素材 擴展插件 AI工具 休閑 游戲下載 游戲教程 簡體中文 簡體中文 English 繁體中文 日本語 ??? Melayu Fran?ais Deutsch Login singup 首頁 后端開發(fā) php教程 40+ Useful Php tips for beginners ? Part 1 40+ Useful Php tips for beginners ? Part 1 WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB Jun 23, 2016 pm 02:37 PM PHP學習指南 http://www.binarytides.com/category/php-2/tutorial/ In this series we are going to look into some useful tips and techniques that can be used to improve and optimise your php code. Note that these php tips are meant for beginners and not those who are already using mvc frameworks etc. The Techniques 1. Do not use relative paths , instead define a ROOT path Its quite common to see such lines : require_once('http://www.cnblogs.com/lib/some_class.php'); This approach has many drawbacks : It first searches for directories specified in the include paths of php , then looks from the current directory. So many directories are checked. When a script is included by another script in a different directory , its base directory changes to that of the including script. Another issue , is that when a script is being run from cron , it may not have its parent directory as the working directory. So its a good idea to have absolute paths : define('ROOT' , '/var/www/project/');require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code Now this is an absolute path and will always stay constant. But we can improve this further. The directory /var/www/project can change , so do we change it everytime ? No instead we make it portable using magic constants like __FILE__ . Take a closer look : //suppose your script is /var/www/project/index.php//Then __FILE__ will always have that full path.define('ROOT' , pathinfo(__FILE__, PATHINFO_DIRNAME));require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code So now even if you shift your project to a different directory , like moving it to an online server , the same code will run without any changes. 2. Dont use require , include , require_once or include_once Your script could be including various files on top , like class libraries , files for utility and helper functions etc like this : require_once('lib/Database.php');require_once('lib/Mail.php');require_once('helpers/utitlity_functions.php'); This is rather primitive. The code needs to be more flexible. Write up helper functions to include things more easily. Lets take an example : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); require_once( $path ); }load_class('Database');load_class('Mail'); See any difference ? You must. It does not need any more explanation. You can improve this further if you wish to like this : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); if(file_exists($path)) { require_once( $path ); }} There are a lot of things that can be done with this : Search multiple directories for the same class file. Change the directory containing class files easily , without breaking the code anywhere. Use similar functions for loading files that contain helper functions , html content etc. 3. Maintain debugging environment in your application During development we echo database queries , dump variables which are creating problems , and then once the problem is solved , we comment them or erase them. But its a good idea to let everything stay and help in the long run On your development machine you can do this : define('ENVIRONMENT' , 'development');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } And on the server you can do this : define('ENVIRONMENT' , 'production');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } 4. Propagate status messages via session Status messages are those messages that are generated after doing a task. <?phpif($wrong_username || $wrong_password){ $msg = 'Invalid username or password';}?><html><body><?php echo $msg; ?><form>...</form></body></html> Code like that is common. Using variables to show status messages has limitations. They cannot be send via redirects (unless you propagate them as GET variables to the next script , which is very silly). In large scripts there might be multiple messages etc. Best way is to use session to propagate them (even if on same page). For this there has to be a session_start on every page. function set_flash($msg){ $_SESSION['message'] = $msg;}function get_flash(){ $msg = $_SESSION['message']; unset($_SESSION['message']); return $msg;} and in your script : <?phpif($wrong_username || $wrong_password){ set_flash('Invalid username or password');}?><html><body>Status is : <?php echo get_flash(); ?><form>...</form></body></html> 5. Make your functions flexible function add_to_cart($item_id , $qty){ $_SESSION['cart'][$item_id] = $qty;}add_to_cart( 'IPHONE3' , 2 ); When adding a single item you use the above function. When adding multiple items , will you create another function ? NO. Just make the function flexible enough to take different kinds of parameters. Have a closer look : function add_to_cart($item_id , $qty){ if(!is_array($item_id)) { $_SESSION['cart'][$item_id] = $qty; } else { foreach($item_id as $i_id => $qty) { $_SESSION['cart'][$i_id] = $qty; } }}add_to_cart( 'IPHONE3' , 2 );add_to_cart( array('IPHONE3' => 2 , 'IPAD' => 5) ); So now the same function can accept different kinds of output. The above can be applied in lots of places to make your code more agile. 6. Omit the closing php tag if it is the last thing in a script I wonder why this tip is omitted from so many blog posts on php tips. <?phpecho "Hello";//Now dont close this tag This will save you lots of problem. Lets take an example : A class file super_class.php <?phpclass super_class{ function super_function() { //super code }}?>//super extra character after the closing tag Now index.php require_once('super_class.php');//echo an image or pdf , or set the cookies or session data And you will get Headers already send error. Why ? because the "super extra character" has been echoed , and all headers went along with that. Now you start debugging. You may have to waste many hours to find the super extra space. Hence make it a habit to omit the closing tag : <?phpclass super_class{ function super_function() { //super code }}//No closing tag Thats better. 7. Collect all output at one place , and output at one shot to the browser This is called output buffering. Lets say you have been echoing content from different functions like this : function print_header(){ echo "<div id='header'>Site Log and Login links</div>";}function print_footer(){ echo "<div id='footer'>Site was made by me</div>";}print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}print_footer(); Instead of doing like that , first collect all output in one place. You can either store it inside variables in the functions or use ob_start and ob_end_clean. So now it should look like function print_header(){ $o = "<div id='header'>Site Log and Login links</div>"; return $o;}function print_footer(){ $o = "<div id='footer'>Site was made by me</div>"; return $o;}echo print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}echo print_footer(); So why should you do output buffering : You can change the output just before sending it to browser if you need to. Think about doing some str_replaces , or may be preg_replaces or may be adding some extra html at the end like profiler/debugger output Its a bad idea to send output to browser and do php processing at the same time. Have you ever seen a website where there is a Fatal error in the sidebar or in a box in the middle of the screen. You know why that happens ? Because processing and output are being mixed. 8. Send correct mime types via header when outputting non-html content Lets echo some xml. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataecho $xml; Works fine. But it needs some improvement. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataheader("content-type: text/xml");echo $xml; Note that header line. That line tells the browser that the content is xml content. So the browser can handle it correctly. Many javascript libraries also rely on header information. Similarly for javascript , css , jpg image , png image : Javascript header("content-type: application/x-javascript");echo "var a = 10"; CSS header("content-type: text/css");echo "#div id { background:#000; }"; 9. Set the correct character encoding for a mysql connection Ever faced a problem that unicode/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation. $host = 'localhost';$username = 'root';$password = 'super_secret';//Attempt to connect to database$c = mysqli_connect($host , $username, $password); //Check connection validityif (!$c) { die ("Could not connect to the database host: <br />". mysqli_connect_error());} //Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){ die('mysqli_set_charset() failed');} Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application. Otherwise what will happen ? You will see lots of boxes and ???????? in non english text. 10. Use htmlentities with the correct characterset option Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc. $value = htmlentities($this->value , ENT_QUOTES , 'UTF-8'); Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual. 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php. Use apache mod_gzip/mod_deflate to compress content via the .htaccess file. 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php. $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= "'$image' ,";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;//Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,]; Be smart. use json_encode : $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;//Output is : var images = ["myself.png","friends.png","colleagues.png"] Isn't that neat ? 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of "debugging" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on. Make sure that your application is as intelligent as possible and reports the most important information in the shortest time. $contents = "All the content";$file_path = "/var/www/project/content.txt";file_put_contents($file_path , $contents); That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons : Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file. $contents = "All the content";$dir = '/var/www/project';$file_path = $dir . "/content.txt";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die("Directory $dir is not writable, or does not exist. Please check");} By doing this you get the accurate information that where is a file write failing and why 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are "accessible" outside. Otherwise for example the files may be created by "php" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on. // Read and write for owner, read for everybody elsechmod("/somedir/somefile", 0644);// Everything for owner, read and execute for otherschmod("/somedir/somefile", 0755); 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ //Save the things} The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this : if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ //Save the things} Now you are free from the value the submit button 16. Use static variables in function where they always have same value //Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} Instead use static variables as : //Delay for some timefunction delay(){ static $sync_delay = null; if($sync_delay == null) { $sync_delay = get_option('sync_delay'); } echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} 17. Don't use the $_SESSION variable directly Some simple examples are : $_SESSION['username'] = $username;$username = $_SESSION['username']; But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain. Hence use application specific keys with wrapper functions : define('APP_ID' , 'abc_corp_ecommerce');//Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}//Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;} 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like : function utility_a(){ //This function does a utility thing like string processing}function utility_b(){ //This function does nother utility thing like database processing}function utility_c(){ //This function is ...} And you use the function throughout your application freely. You may want to wrap them into a class as static functions : class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}//and call them as $a = Utility::utility_a();$b = Utility::utility_b(); One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else. 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++; Its absolutely a WASTE. Write if($a == true){ $a_count++;} Dont try to make your code shorter by eating up syntax. Rather make your logic shorter. Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this : foreach($arr as $c => $v){ $arr[$c] = trim($v);} But it can more cleaner with array_map : $arr = array_map('trim' , $arr); This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more. 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters. The php filter extension provides simple way to validate or check values as being a valid 'something'. 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate']; Its a good habit. 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded : $db_records_in_array_format; //This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; //2MB moresome_function($cc); //Another 2MB ? The above thing is common when importing a csv file or exporting table to a csv file Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays. Consider passing them by reference , or storing them in a class variable : $a = get_large_array();pass_to_function(&$a); by doing this the same variable (and not its copy) will be available to the function. Check documentation class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { //process $this->a }} unset them as soon as possible , so that memory is freed and rest of the script can relax. Here is a simple demonstration of how assign by reference can save memory in some cases <?phpini_set('display_errors' , true);error_reporting(E_ALL);$a = array();for($i = 0; $i < 100000 ; $i++){ $a[$i] = 'A'.$i;}echo 'Memory usage in MB : '. memory_get_usage() / 1000000 . '<br />';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() / 1000000 . '<br />';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() / 1000000 . '<br />';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() / 1000000 . '<br />'; The output on a typical php 5.4 machine is : Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more. 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this : function add_to_cart(){ $db = new Database(); $db->query("INSERT INTO cart .....");}function empty_cart(){ $db = new Database(); $db->query("DELETE FROM cart .....");} Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory. Use the singleton pattern for special cases like database connection. 26. Avoid direct SQL query , abstract it $query = "INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')";$db->query($query); //call to mysqli_query() The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like: All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries. A very simple example of an activerecord insert function can be like this : function insert_record($table_name , $data){ foreach($data as $key => $value) { //mysqli_real_escape_string $data[$key] = $db->mres($value); } $fields = implode(',' , array_keys($data)); $values = "'" . implode("','" , array_values($data)) . "'"; //Final query $query = "INSERT INTO {$table}($fields) VALUES($values)"; return $db->query($query);}//data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);//perform the INSERT queryinsert_record('users' , $data); The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse). This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise. 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again. Benefits : Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue. Storing session in database makes many other things easier like: Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example : <head> <base href="http://www.domain.com/store/"></head><body> <img src="/static/imghw/default1.png" data-src="happy.jpg" class="lazy" / alt="40+ Useful Php tips for beginners ? Part 1" ></body></html> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories. Lets take an example www.domain.com/store/home.php www.domain.com/store/products/ipad.php In home.php the following can be written : <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> But in ipad.php the links have to be like this : <a href="../home.php">Home</a><a href="ipad.php">Ipad</a> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag. <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products/ipad.php 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing. ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT); On production , the display should be disabled. ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark. After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set. ini_set('log_errors' , '1');ini_set('error_log' , '/path/to/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); Note : 1. The path '/path/to/errors.txt' should be writable by the web server for errors to be logged there. 2. A separate error file is specified , otherwise all logs would go inside the apache/web server error log and get mixed up with other apache errors. 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver). 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like /var/log dont have to searched. 5. Dont set error_reporting to 0. It will not log anything then. Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file. Set 'display_errors=On' in php.ini on development machine On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page. Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work. Set 'display_errors=Off' in php.ini on production machine Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away. 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results. On a 64 bit machine you can see such output. $ php -aInteractive shellphp > echo strtotime("0000-00-00 00:00:00");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600 But on a 32 bit machine all of them would give bool(false). Check here for more. What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines. 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this : set_time_limit(30);//Rest of the code It may not always work. Any execution that happens outside the script via system calls/os functions like socket operations, database operations etc. will not be under control of set_time_limit. So if a database operation takes lot of time or "hangs" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time. 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it. A better solution : /** Method to execute a command in the terminal Uses : 1. system 2. passthru 3. exec 4. shell_exec*/function terminal($command){ //system if(function_exists('system')) { ob_start(); system($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //passthru else if(function_exists('passthru')) { ob_start(); passthru($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //exec else if(function_exists('exec')) { exec($command , $output , $return_var); $output = implode("\n" , $output); } //shell_exec else if(function_exists('shell_exec')) { $output = shell_exec($command) ; } else { $output = 'Command execution not possible on this system'; $return_var = 1; } return array('output' => $output , 'status' => $return_var);}terminal('ls'); The above function will execute the shell command using whichever function is available , keeping your code consistent. 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user. 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise. Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind. 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily. Few popular libraries are : mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference. 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code. Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community. They contain user feedback, expert advice and useful code snippets. So check them out. 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!! 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc. The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more 1. Codeigniter 2. WordPress 3. Joomla CMS 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment. Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster. Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free. 本站聲明 本文內(nèi)容由網(wǎng)友自發(fā)貢獻,版權(quán)歸原作者所有,本站不承擔相應(yīng)法律責任。如您發(fā)現(xiàn)有涉嫌抄襲侵權(quán)的內(nèi)容,請聯(lián)系admin@php.cn 熱AI工具 Undress AI Tool 免費脫衣服圖片 Undresser.AI Undress 人工智能驅(qū)動的應(yīng)用程序,用于創(chuàng)建逼真的裸體照片 AI Clothes Remover 用于從照片中去除衣服的在線人工智能工具。 Clothoff.io AI脫衣機 Video Face Swap 使用我們完全免費的人工智能換臉工具輕松在任何視頻中換臉! 顯示更多 熱門文章 指南:恒星刀片保存文件位置/保存文件丟失/不保存 4 周前 By DDD Oguri Cap Build Guide |漂亮的德比志 2 周前 By Jack chen Agnes Tachyon Build Guide |漂亮的德比志 1 周前 By Jack chen 沙丘:覺醒 - 高級行星學家Quest演練 4 周前 By Jack chen 約會一切:德克和哈珀關(guān)系指南 4 周前 By Jack chen 顯示更多 熱工具 記事本++7.3.1 好用且免費的代碼編輯器 SublimeText3漢化版 中文版,非常好用 禪工作室 13.0.1 功能強大的PHP集成開發(fā)環(huán)境 Dreamweaver CS6 視覺化網(wǎng)頁開發(fā)工具 SublimeText3 Mac版 神級代碼編輯軟件(SublimeText3) 顯示更多 熱門話題 gmail郵箱登陸入口在哪里 8638 17 Java教程 1783 16 CakePHP 教程 1728 56 Laravel 教程 1578 28 PHP教程 1442 31 顯示更多 Related knowledge 如何在PHP中實施身份驗證和授權(quán)? Jun 20, 2025 am 01:03 AM tosecurelyhandleauthenticationandationallizationInphp,lofterTheSesteps:1.AlwaysHashPasswordSwithPassword_hash()andverifyusingspasspassword_verify(),usepreparedStatatementStopreventsqlineptions,andStoreSeruserDatain usseruserDatain $ _sessiveferterlogin.2.implementrole-2.imaccessccsccccccccccccccccccccccccc. 如何在PHP中安全地處理文件上傳? Jun 19, 2025 am 01:05 AM 要安全處理PHP中的文件上傳,核心在于驗證文件類型、重命名文件并限制權(quán)限。1.使用finfo_file()檢查真實MIME類型,僅允許特定類型如image/jpeg;2.用uniqid()生成隨機文件名,存儲至非Web根目錄;3.通過php.ini和HTML表單限制文件大小,設(shè)置目錄權(quán)限為0755;4.使用ClamAV掃描惡意軟件,增強安全性。這些步驟有效防止安全漏洞,確保文件上傳過程安全可靠。 PHP中==(松散比較)和===(嚴格的比較)之間有什么區(qū)別? Jun 19, 2025 am 01:07 AM 在PHP中,==與===的主要區(qū)別在于類型檢查的嚴格程度。==在比較前會進行類型轉(zhuǎn)換,例如5=="5"返回true,而===要求值和類型都相同才會返回true,例如5==="5"返回false。使用場景上,===更安全應(yīng)優(yōu)先使用,==僅在需要類型轉(zhuǎn)換時使用。 如何在PHP( - , *, /,%)中執(zhí)行算術(shù)操作? Jun 19, 2025 pm 05:13 PM PHP中使用基本數(shù)學運算的方法如下:1.加法用 號,支持整數(shù)和浮點數(shù),也可用于變量,字符串數(shù)字會自動轉(zhuǎn)換但不推薦依賴;2.減法用-號,變量同理,類型轉(zhuǎn)換同樣適用;3.乘法用*號,適用于數(shù)字及類似字符串;4.除法用/號,需避免除以零,并注意結(jié)果可能是浮點數(shù);5.取模用%號,可用于判斷奇偶數(shù),處理負數(shù)時余數(shù)符號與被除數(shù)一致。正確使用這些運算符的關(guān)鍵在于確保數(shù)據(jù)類型清晰并處理好邊界情況。 如何與PHP的NOSQL數(shù)據(jù)庫(例如MongoDB,Redis)進行交互? Jun 19, 2025 am 01:07 AM 是的,PHP可以通過特定擴展或庫與MongoDB和Redis等NoSQL數(shù)據(jù)庫交互。首先,使用MongoDBPHP驅(qū)動(通過PECL或Composer安裝)創(chuàng)建客戶端實例并操作數(shù)據(jù)庫及集合,支持插入、查詢、聚合等操作;其次,使用Predis庫或phpredis擴展連接Redis,執(zhí)行鍵值設(shè)置與獲取,推薦phpredis用于高性能場景,Predis則便于快速部署;兩者均適用于生產(chǎn)環(huán)境且文檔完善。 我如何了解最新的PHP開發(fā)和最佳實踐? Jun 23, 2025 am 12:56 AM TostaycurrentwithPHPdevelopmentsandbestpractices,followkeynewssourceslikePHP.netandPHPWeekly,engagewithcommunitiesonforumsandconferences,keeptoolingupdatedandgraduallyadoptnewfeatures,andreadorcontributetoopensourceprojects.First,followreliablesource 什么是PHP,為什么它用于Web開發(fā)? Jun 23, 2025 am 12:55 AM PHPbecamepopularforwebdevelopmentduetoitseaseoflearning,seamlessintegrationwithHTML,widespreadhostingsupport,andalargeecosystemincludingframeworkslikeLaravelandCMSplatformslikeWordPress.Itexcelsinhandlingformsubmissions,managingusersessions,interacti 如何設(shè)置PHP時區(qū)? Jun 25, 2025 am 01:00 AM tosetTherightTimeZoneInphp,restate_default_timezone_set()functionAtthestArtofyourscriptWithavalIdidentIdentifiersuchas'america/new_york'.1.usedate_default_default_timezone_set_set() See all articles
Instead of doing like that , first collect all output in one place. You can either store it inside variables in the functions or use ob_start and ob_end_clean. So now it should look like<\/p>
function print_header(){ $o = \"Site Log and Login links<\/div>\"; return $o;}function print_footer(){ $o = \"Site was made by me<\/div>\"; return $o;}echo print_header();for($i = 0 ; $i < 100; $i++){ echo \"I is : $i ';}echo print_footer();<\/pre> So why should you do output buffering :<\/p> You can change the output just before sending it to browser if you need to. Think about doing some str_replaces , or may be preg_replaces or may be adding some extra html at the end like profiler\/debugger output Its a bad idea to send output to browser and do php processing at the same time. Have you ever seen a website where there is a Fatal error in the sidebar or in a box in the middle of the screen. You know why that happens ? Because processing and output are being mixed. 8. Send correct mime types via header when outputting non-html content Lets echo some xml.<\/p> $xml = '';$xml = \" 0<\/code><\/response>\";\/\/Send xml dataecho $xml;<\/pre> Works fine. But it needs some improvement.<\/p> $xml = '';$xml = \" 0<\/code><\/response>\";\/\/Send xml dataheader(\"content-type: text\/xml\");echo $xml;<\/pre> Note that header line. That line tells the browser that the content is xml content. So the browser can handle it correctly. Many javascript libraries also rely on header information.<\/p> Similarly for javascript , css , jpg image , png image :<\/p> Javascript<\/p> header(\"content-type: application\/x-javascript\");echo \"var a = 10\";<\/pre> CSS<\/p> header(\"content-type: text\/css\");echo \"#div id { background:#000; }\";<\/pre> 9. Set the correct character encoding for a mysql connection Ever faced a problem that unicode\/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation.<\/p> $host = 'localhost';$username = 'root';$password = 'super_secret';\/\/Attempt to connect to database$c = mysqli_connect($host , $username, $password);\t\t\/\/Check connection validityif (!$c) {\tdie (\"Could not connect to the database host: \". mysqli_connect_error());}\t\t\/\/Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){\tdie('mysqli_set_charset() failed');}<\/pre> Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application.<\/p> Otherwise what will happen ? You will see lots of boxes and ???????? in non english text.<\/p> 10. Use htmlentities with the correct characterset option Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc.<\/p> $value = htmlentities($this->value , ENT_QUOTES , 'UTF-8');<\/pre> Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual.<\/p> 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php.<\/p> Use apache mod_gzip\/mod_deflate to compress content via the .htaccess file.<\/p> 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php.<\/p> $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= \"'$image' ,\";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;\/\/Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,];<\/pre> Be smart. use json_encode :<\/p> $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;\/\/Output is : var images = [\"myself.png\",\"friends.png\",\"colleagues.png\"]<\/pre> Isn't that neat ?<\/p> 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of \"debugging\" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on.<\/p> Make sure that your application is as intelligent as possible and reports the most important information in the shortest time.<\/p> $contents = \"All the content\";$file_path = \"\/var\/www\/project\/content.txt\";file_put_contents($file_path , $contents);<\/pre> That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons :<\/p> Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file.<\/p> $contents = \"All the content\";$dir = '\/var\/www\/project';$file_path = $dir . \"\/content.txt\";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die(\"Directory $dir is not writable, or does not exist. Please check\");}<\/pre> By doing this you get the accurate information that where is a file write failing and why<\/p> 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are \"accessible\" outside. Otherwise for example the files may be created by \"php\" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on.<\/p> \/\/ Read and write for owner, read for everybody elsechmod(\"\/somedir\/somefile\", 0644);\/\/ Everything for owner, read and execute for otherschmod(\"\/somedir\/somefile\", 0755);<\/pre> 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ \/\/Save the things}<\/pre> The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this :<\/p> if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ \/\/Save the things}<\/pre> Now you are free from the value the submit button<\/p> 16. Use static variables in function where they always have same value \/\/Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); \t echo \"Delaying for $sync_delay seconds...\"; sleep($sync_delay); echo \"Done \";}<\/pre> Instead use static variables as :<\/p> \/\/Delay for some timefunction delay(){ static $sync_delay = null;\t if($sync_delay == null) {\t$sync_delay = get_option('sync_delay'); }\t echo \"Delaying for $sync_delay seconds...\"; sleep($sync_delay); echo \"Done \";}<\/pre> 17. Don't use the $_SESSION variable directly Some simple examples are :<\/p> $_SESSION['username'] = $username;$username = $_SESSION['username'];<\/pre> But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain.<\/p> Hence use application specific keys with wrapper functions :<\/p> define('APP_ID' , 'abc_corp_ecommerce');\/\/Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}\/\/Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;}<\/pre> 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like :<\/p> function utility_a(){ \/\/This function does a utility thing like string processing}function utility_b(){ \/\/This function does nother utility thing like database processing}function utility_c(){ \/\/This function is ...}<\/pre> And you use the function throughout your application freely. You may want to wrap them into a class as static functions :<\/p> class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}\/\/and call them as $a = Utility::utility_a();$b = Utility::utility_b();<\/pre> One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else.<\/p> 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++;<\/pre> Its absolutely a WASTE.<\/p> Write<\/p> if($a == true){ $a_count++;}<\/pre> Dont try to make your code shorter by eating up syntax. Rather make your logic shorter.<\/p> Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this :<\/p> foreach($arr as $c => $v){\t$arr[$c] = trim($v);}<\/pre> But it can more cleaner with array_map :<\/p> $arr = array_map('trim' , $arr);<\/pre> This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more.<\/p> 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters.<\/p> The php filter extension provides simple way to validate or check values as being a valid 'something'.<\/p> 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate'];<\/pre> Its a good habit.<\/p> 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose<\/p> 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded :<\/p> $db_records_in_array_format; \/\/This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; \/\/2MB moresome_function($cc); \/\/Another 2MB ?<\/pre> The above thing is common when importing a csv file or exporting table to a csv file<\/p> Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays.<\/p> Consider passing them by reference , or storing them in a class variable :<\/p> $a = get_large_array();pass_to_function(&$a);<\/pre> by doing this the same variable (and not its copy) will be available to the function. Check documentation<\/p> class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { \/\/process $this->a }}<\/pre> unset them as soon as possible , so that memory is freed and rest of the script can relax.<\/p> Here is a simple demonstration of how assign by reference can save memory in some cases<\/p> ';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() \/ 1000000 . '';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() \/ 1000000 . '';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() \/ 1000000 . '';<\/pre> The output on a typical php 5.4 machine is :<\/p> Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 <\/p> So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more.<\/p> 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this :<\/p> function add_to_cart(){ $db = new Database(); $db->query(\"INSERT INTO cart .....\");}function empty_cart(){ $db = new Database(); $db->query(\"DELETE FROM cart .....\");}<\/pre> Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory.<\/p> Use the singleton pattern for special cases like database connection.<\/p> 26. Avoid direct SQL query , abstract it $query = \"INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')\";$db->query($query); \/\/call to mysqli_query()<\/pre> The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like:<\/p> All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord<\/p> It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries.<\/p> A very simple example of an activerecord insert function can be like this :<\/p> function insert_record($table_name , $data){ foreach($data as $key => $value) {\t\/\/mysqli_real_escape_string $data[$key] = $db->mres($value); }\t\t $fields = implode(',' , array_keys($data)); $values = \"'\" . implode(\"','\" , array_values($data)) . \"'\"; \/\/Final query\t $query = \"INSERT INTO {$table}($fields) VALUES($values)\";\t\t return $db->query($query);}\/\/data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);\/\/perform the INSERT queryinsert_record('users' , $data);<\/pre> The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse).<\/p> This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise.<\/p> 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again.<\/p> Benefits :<\/p> Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue.<\/p> Storing session in database makes many other things easier like:<\/p> Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines\/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example :<\/p> <\/head> <\/body><\/html><\/pre> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories.<\/p> Lets take an example<\/p> www.domain.com\/store\/home.php www.domain.com\/store\/products\/ipad.php<\/p> In home.php the following can be written :<\/p> Home<\/a>Ipad<\/a><\/pre> But in ipad.php the links have to be like this :<\/p> Home<\/a>Ipad<\/a><\/pre> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag.<\/p> <\/head>Home<\/a>Ipad<\/a><\/body><\/html><\/pre> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products\/ipad.php<\/p> 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing.<\/p> ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT);<\/pre> On production , the display should be disabled.<\/p> ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark.<\/p> After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set.<\/p> ini_set('log_errors' , '1');ini_set('error_log' , '\/path\/to\/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> Note :<\/p> 1. The path '\/path\/to\/errors.txt' should be writable by the web server for errors to be logged there.<\/p> 2. A separate error file is specified , otherwise all logs would go inside the apache\/web server error log and get mixed up with other apache errors.<\/p> 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver).<\/p> 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like \/var\/log dont have to searched.<\/p> 5. Dont set error_reporting to 0. It will not log anything then.<\/p> Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file.<\/p> Set 'display_errors=On' in php.ini on development machine<\/p> On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page.<\/p> Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work.<\/p> Set 'display_errors=Off' in php.ini on production machine<\/p> Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away.<\/p> 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results.<\/p> On a 64 bit machine you can see such output.<\/p> $ php -aInteractive shellphp > echo strtotime(\"0000-00-00 00:00:00\");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600<\/pre> But on a 32 bit machine all of them would give bool(false). Check here for more.<\/p> What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines.<\/p> 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this :<\/p> set_time_limit(30);\/\/Rest of the code<\/pre> It may not always work. Any execution that happens outside the script via system calls\/os functions like socket operations, database operations etc. will not be under control of set_time_limit.<\/p> So if a database operation takes lot of time or \"hangs\" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time.<\/p> 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it.<\/p> A better solution :<\/p> \/**\tMethod to execute a command in the terminal\tUses :\t1. system\t2. passthru\t3. exec\t4. shell_exec*\/function terminal($command){\t\/\/system\tif(function_exists('system'))\t{\t\tob_start();\t\tsystem($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/passthru\telse if(function_exists('passthru'))\t{\t\tob_start();\t\tpassthru($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/exec\telse if(function_exists('exec'))\t{\t\texec($command , $output , $return_var);\t\t$output = implode(\"\\n\" , $output);\t}\t\/\/shell_exec\telse if(function_exists('shell_exec'))\t{\t\t$output = shell_exec($command) ;\t}\telse\t{\t\t$output = 'Command execution not possible on this system';\t\t$return_var = 1;\t}\treturn array('output' => $output , 'status' => $return_var);}terminal('ls');<\/pre> The above function will execute the shell command using whichever function is available , keeping your code consistent.<\/p> 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user.<\/p> 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise.<\/p> Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind.<\/p> 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily.<\/p> Few popular libraries are :<\/p> mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference.<\/p> 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code.<\/p> Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community.<\/p> They contain user feedback, expert advice and useful code snippets. So check them out.<\/p> 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!!<\/p> 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc.<\/p> The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more<\/p> 1. Codeigniter 2. WordPress 3. Joomla CMS<\/p> 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment.<\/p> Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster.<\/p> Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free.<\/p> "} 社區(qū) 文章 合集 問答 學習 課程 編程詞典 工具庫 開發(fā)工具 網(wǎng)站源碼 PHP 庫 JS特效 網(wǎng)站素材 擴展插件 AI工具 休閑 游戲下載 游戲教程 簡體中文 簡體中文 English 繁體中文 日本語 ??? Melayu Fran?ais Deutsch Login singup 首頁 后端開發(fā) php教程 40+ Useful Php tips for beginners ? Part 1 40+ Useful Php tips for beginners ? Part 1 WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB Jun 23, 2016 pm 02:37 PM PHP學習指南 http://www.binarytides.com/category/php-2/tutorial/ In this series we are going to look into some useful tips and techniques that can be used to improve and optimise your php code. Note that these php tips are meant for beginners and not those who are already using mvc frameworks etc. The Techniques 1. Do not use relative paths , instead define a ROOT path Its quite common to see such lines : require_once('http://www.cnblogs.com/lib/some_class.php'); This approach has many drawbacks : It first searches for directories specified in the include paths of php , then looks from the current directory. So many directories are checked. When a script is included by another script in a different directory , its base directory changes to that of the including script. Another issue , is that when a script is being run from cron , it may not have its parent directory as the working directory. So its a good idea to have absolute paths : define('ROOT' , '/var/www/project/');require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code Now this is an absolute path and will always stay constant. But we can improve this further. The directory /var/www/project can change , so do we change it everytime ? No instead we make it portable using magic constants like __FILE__ . Take a closer look : //suppose your script is /var/www/project/index.php//Then __FILE__ will always have that full path.define('ROOT' , pathinfo(__FILE__, PATHINFO_DIRNAME));require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code So now even if you shift your project to a different directory , like moving it to an online server , the same code will run without any changes. 2. Dont use require , include , require_once or include_once Your script could be including various files on top , like class libraries , files for utility and helper functions etc like this : require_once('lib/Database.php');require_once('lib/Mail.php');require_once('helpers/utitlity_functions.php'); This is rather primitive. The code needs to be more flexible. Write up helper functions to include things more easily. Lets take an example : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); require_once( $path ); }load_class('Database');load_class('Mail'); See any difference ? You must. It does not need any more explanation. You can improve this further if you wish to like this : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); if(file_exists($path)) { require_once( $path ); }} There are a lot of things that can be done with this : Search multiple directories for the same class file. Change the directory containing class files easily , without breaking the code anywhere. Use similar functions for loading files that contain helper functions , html content etc. 3. Maintain debugging environment in your application During development we echo database queries , dump variables which are creating problems , and then once the problem is solved , we comment them or erase them. But its a good idea to let everything stay and help in the long run On your development machine you can do this : define('ENVIRONMENT' , 'development');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } And on the server you can do this : define('ENVIRONMENT' , 'production');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } 4. Propagate status messages via session Status messages are those messages that are generated after doing a task. <?phpif($wrong_username || $wrong_password){ $msg = 'Invalid username or password';}?><html><body><?php echo $msg; ?><form>...</form></body></html> Code like that is common. Using variables to show status messages has limitations. They cannot be send via redirects (unless you propagate them as GET variables to the next script , which is very silly). In large scripts there might be multiple messages etc. Best way is to use session to propagate them (even if on same page). For this there has to be a session_start on every page. function set_flash($msg){ $_SESSION['message'] = $msg;}function get_flash(){ $msg = $_SESSION['message']; unset($_SESSION['message']); return $msg;} and in your script : <?phpif($wrong_username || $wrong_password){ set_flash('Invalid username or password');}?><html><body>Status is : <?php echo get_flash(); ?><form>...</form></body></html> 5. Make your functions flexible function add_to_cart($item_id , $qty){ $_SESSION['cart'][$item_id] = $qty;}add_to_cart( 'IPHONE3' , 2 ); When adding a single item you use the above function. When adding multiple items , will you create another function ? NO. Just make the function flexible enough to take different kinds of parameters. Have a closer look : function add_to_cart($item_id , $qty){ if(!is_array($item_id)) { $_SESSION['cart'][$item_id] = $qty; } else { foreach($item_id as $i_id => $qty) { $_SESSION['cart'][$i_id] = $qty; } }}add_to_cart( 'IPHONE3' , 2 );add_to_cart( array('IPHONE3' => 2 , 'IPAD' => 5) ); So now the same function can accept different kinds of output. The above can be applied in lots of places to make your code more agile. 6. Omit the closing php tag if it is the last thing in a script I wonder why this tip is omitted from so many blog posts on php tips. <?phpecho "Hello";//Now dont close this tag This will save you lots of problem. Lets take an example : A class file super_class.php <?phpclass super_class{ function super_function() { //super code }}?>//super extra character after the closing tag Now index.php require_once('super_class.php');//echo an image or pdf , or set the cookies or session data And you will get Headers already send error. Why ? because the "super extra character" has been echoed , and all headers went along with that. Now you start debugging. You may have to waste many hours to find the super extra space. Hence make it a habit to omit the closing tag : <?phpclass super_class{ function super_function() { //super code }}//No closing tag Thats better. 7. Collect all output at one place , and output at one shot to the browser This is called output buffering. Lets say you have been echoing content from different functions like this : function print_header(){ echo "<div id='header'>Site Log and Login links</div>";}function print_footer(){ echo "<div id='footer'>Site was made by me</div>";}print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}print_footer(); Instead of doing like that , first collect all output in one place. You can either store it inside variables in the functions or use ob_start and ob_end_clean. So now it should look like function print_header(){ $o = "<div id='header'>Site Log and Login links</div>"; return $o;}function print_footer(){ $o = "<div id='footer'>Site was made by me</div>"; return $o;}echo print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}echo print_footer(); So why should you do output buffering : You can change the output just before sending it to browser if you need to. Think about doing some str_replaces , or may be preg_replaces or may be adding some extra html at the end like profiler/debugger output Its a bad idea to send output to browser and do php processing at the same time. Have you ever seen a website where there is a Fatal error in the sidebar or in a box in the middle of the screen. You know why that happens ? Because processing and output are being mixed. 8. Send correct mime types via header when outputting non-html content Lets echo some xml. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataecho $xml; Works fine. But it needs some improvement. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataheader("content-type: text/xml");echo $xml; Note that header line. That line tells the browser that the content is xml content. So the browser can handle it correctly. Many javascript libraries also rely on header information. Similarly for javascript , css , jpg image , png image : Javascript header("content-type: application/x-javascript");echo "var a = 10"; CSS header("content-type: text/css");echo "#div id { background:#000; }"; 9. Set the correct character encoding for a mysql connection Ever faced a problem that unicode/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation. $host = 'localhost';$username = 'root';$password = 'super_secret';//Attempt to connect to database$c = mysqli_connect($host , $username, $password); //Check connection validityif (!$c) { die ("Could not connect to the database host: <br />". mysqli_connect_error());} //Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){ die('mysqli_set_charset() failed');} Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application. Otherwise what will happen ? You will see lots of boxes and ???????? in non english text. 10. Use htmlentities with the correct characterset option Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc. $value = htmlentities($this->value , ENT_QUOTES , 'UTF-8'); Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual. 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php. Use apache mod_gzip/mod_deflate to compress content via the .htaccess file. 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php. $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= "'$image' ,";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;//Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,]; Be smart. use json_encode : $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;//Output is : var images = ["myself.png","friends.png","colleagues.png"] Isn't that neat ? 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of "debugging" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on. Make sure that your application is as intelligent as possible and reports the most important information in the shortest time. $contents = "All the content";$file_path = "/var/www/project/content.txt";file_put_contents($file_path , $contents); That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons : Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file. $contents = "All the content";$dir = '/var/www/project';$file_path = $dir . "/content.txt";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die("Directory $dir is not writable, or does not exist. Please check");} By doing this you get the accurate information that where is a file write failing and why 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are "accessible" outside. Otherwise for example the files may be created by "php" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on. // Read and write for owner, read for everybody elsechmod("/somedir/somefile", 0644);// Everything for owner, read and execute for otherschmod("/somedir/somefile", 0755); 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ //Save the things} The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this : if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ //Save the things} Now you are free from the value the submit button 16. Use static variables in function where they always have same value //Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} Instead use static variables as : //Delay for some timefunction delay(){ static $sync_delay = null; if($sync_delay == null) { $sync_delay = get_option('sync_delay'); } echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} 17. Don't use the $_SESSION variable directly Some simple examples are : $_SESSION['username'] = $username;$username = $_SESSION['username']; But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain. Hence use application specific keys with wrapper functions : define('APP_ID' , 'abc_corp_ecommerce');//Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}//Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;} 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like : function utility_a(){ //This function does a utility thing like string processing}function utility_b(){ //This function does nother utility thing like database processing}function utility_c(){ //This function is ...} And you use the function throughout your application freely. You may want to wrap them into a class as static functions : class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}//and call them as $a = Utility::utility_a();$b = Utility::utility_b(); One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else. 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++; Its absolutely a WASTE. Write if($a == true){ $a_count++;} Dont try to make your code shorter by eating up syntax. Rather make your logic shorter. Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this : foreach($arr as $c => $v){ $arr[$c] = trim($v);} But it can more cleaner with array_map : $arr = array_map('trim' , $arr); This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more. 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters. The php filter extension provides simple way to validate or check values as being a valid 'something'. 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate']; Its a good habit. 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded : $db_records_in_array_format; //This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; //2MB moresome_function($cc); //Another 2MB ? The above thing is common when importing a csv file or exporting table to a csv file Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays. Consider passing them by reference , or storing them in a class variable : $a = get_large_array();pass_to_function(&$a); by doing this the same variable (and not its copy) will be available to the function. Check documentation class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { //process $this->a }} unset them as soon as possible , so that memory is freed and rest of the script can relax. Here is a simple demonstration of how assign by reference can save memory in some cases <?phpini_set('display_errors' , true);error_reporting(E_ALL);$a = array();for($i = 0; $i < 100000 ; $i++){ $a[$i] = 'A'.$i;}echo 'Memory usage in MB : '. memory_get_usage() / 1000000 . '<br />';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() / 1000000 . '<br />';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() / 1000000 . '<br />';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() / 1000000 . '<br />'; The output on a typical php 5.4 machine is : Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more. 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this : function add_to_cart(){ $db = new Database(); $db->query("INSERT INTO cart .....");}function empty_cart(){ $db = new Database(); $db->query("DELETE FROM cart .....");} Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory. Use the singleton pattern for special cases like database connection. 26. Avoid direct SQL query , abstract it $query = "INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')";$db->query($query); //call to mysqli_query() The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like: All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries. A very simple example of an activerecord insert function can be like this : function insert_record($table_name , $data){ foreach($data as $key => $value) { //mysqli_real_escape_string $data[$key] = $db->mres($value); } $fields = implode(',' , array_keys($data)); $values = "'" . implode("','" , array_values($data)) . "'"; //Final query $query = "INSERT INTO {$table}($fields) VALUES($values)"; return $db->query($query);}//data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);//perform the INSERT queryinsert_record('users' , $data); The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse). This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise. 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again. Benefits : Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue. Storing session in database makes many other things easier like: Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example : <head> <base href="http://www.domain.com/store/"></head><body> <img src="/static/imghw/default1.png" data-src="happy.jpg" class="lazy" / alt="40+ Useful Php tips for beginners ? Part 1" ></body></html> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories. Lets take an example www.domain.com/store/home.php www.domain.com/store/products/ipad.php In home.php the following can be written : <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> But in ipad.php the links have to be like this : <a href="../home.php">Home</a><a href="ipad.php">Ipad</a> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag. <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products/ipad.php 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing. ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT); On production , the display should be disabled. ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark. After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set. ini_set('log_errors' , '1');ini_set('error_log' , '/path/to/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); Note : 1. The path '/path/to/errors.txt' should be writable by the web server for errors to be logged there. 2. A separate error file is specified , otherwise all logs would go inside the apache/web server error log and get mixed up with other apache errors. 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver). 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like /var/log dont have to searched. 5. Dont set error_reporting to 0. It will not log anything then. Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file. Set 'display_errors=On' in php.ini on development machine On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page. Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work. Set 'display_errors=Off' in php.ini on production machine Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away. 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results. On a 64 bit machine you can see such output. $ php -aInteractive shellphp > echo strtotime("0000-00-00 00:00:00");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600 But on a 32 bit machine all of them would give bool(false). Check here for more. What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines. 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this : set_time_limit(30);//Rest of the code It may not always work. Any execution that happens outside the script via system calls/os functions like socket operations, database operations etc. will not be under control of set_time_limit. So if a database operation takes lot of time or "hangs" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time. 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it. A better solution : /** Method to execute a command in the terminal Uses : 1. system 2. passthru 3. exec 4. shell_exec*/function terminal($command){ //system if(function_exists('system')) { ob_start(); system($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //passthru else if(function_exists('passthru')) { ob_start(); passthru($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //exec else if(function_exists('exec')) { exec($command , $output , $return_var); $output = implode("\n" , $output); } //shell_exec else if(function_exists('shell_exec')) { $output = shell_exec($command) ; } else { $output = 'Command execution not possible on this system'; $return_var = 1; } return array('output' => $output , 'status' => $return_var);}terminal('ls'); The above function will execute the shell command using whichever function is available , keeping your code consistent. 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user. 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise. Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind. 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily. Few popular libraries are : mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference. 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code. Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community. They contain user feedback, expert advice and useful code snippets. So check them out. 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!! 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc. The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more 1. Codeigniter 2. WordPress 3. Joomla CMS 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment. Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster. Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free. 本站聲明 本文內(nèi)容由網(wǎng)友自發(fā)貢獻,版權(quán)歸原作者所有,本站不承擔相應(yīng)法律責任。如您發(fā)現(xiàn)有涉嫌抄襲侵權(quán)的內(nèi)容,請聯(lián)系admin@php.cn 熱AI工具 Undress AI Tool 免費脫衣服圖片 Undresser.AI Undress 人工智能驅(qū)動的應(yīng)用程序,用于創(chuàng)建逼真的裸體照片 AI Clothes Remover 用于從照片中去除衣服的在線人工智能工具。 Clothoff.io AI脫衣機 Video Face Swap 使用我們完全免費的人工智能換臉工具輕松在任何視頻中換臉! 顯示更多 熱門文章 指南:恒星刀片保存文件位置/保存文件丟失/不保存 4 周前 By DDD Oguri Cap Build Guide |漂亮的德比志 2 周前 By Jack chen Agnes Tachyon Build Guide |漂亮的德比志 1 周前 By Jack chen 沙丘:覺醒 - 高級行星學家Quest演練 4 周前 By Jack chen 約會一切:德克和哈珀關(guān)系指南 4 周前 By Jack chen 顯示更多 熱工具 記事本++7.3.1 好用且免費的代碼編輯器 SublimeText3漢化版 中文版,非常好用 禪工作室 13.0.1 功能強大的PHP集成開發(fā)環(huán)境 Dreamweaver CS6 視覺化網(wǎng)頁開發(fā)工具 SublimeText3 Mac版 神級代碼編輯軟件(SublimeText3) 顯示更多 熱門話題 gmail郵箱登陸入口在哪里 8638 17 Java教程 1783 16 CakePHP 教程 1728 56 Laravel 教程 1578 28 PHP教程 1442 31 顯示更多 Related knowledge 如何在PHP中實施身份驗證和授權(quán)? Jun 20, 2025 am 01:03 AM tosecurelyhandleauthenticationandationallizationInphp,lofterTheSesteps:1.AlwaysHashPasswordSwithPassword_hash()andverifyusingspasspassword_verify(),usepreparedStatatementStopreventsqlineptions,andStoreSeruserDatain usseruserDatain $ _sessiveferterlogin.2.implementrole-2.imaccessccsccccccccccccccccccccccccc. 如何在PHP中安全地處理文件上傳? Jun 19, 2025 am 01:05 AM 要安全處理PHP中的文件上傳,核心在于驗證文件類型、重命名文件并限制權(quán)限。1.使用finfo_file()檢查真實MIME類型,僅允許特定類型如image/jpeg;2.用uniqid()生成隨機文件名,存儲至非Web根目錄;3.通過php.ini和HTML表單限制文件大小,設(shè)置目錄權(quán)限為0755;4.使用ClamAV掃描惡意軟件,增強安全性。這些步驟有效防止安全漏洞,確保文件上傳過程安全可靠。 PHP中==(松散比較)和===(嚴格的比較)之間有什么區(qū)別? Jun 19, 2025 am 01:07 AM 在PHP中,==與===的主要區(qū)別在于類型檢查的嚴格程度。==在比較前會進行類型轉(zhuǎn)換,例如5=="5"返回true,而===要求值和類型都相同才會返回true,例如5==="5"返回false。使用場景上,===更安全應(yīng)優(yōu)先使用,==僅在需要類型轉(zhuǎn)換時使用。 如何在PHP( - , *, /,%)中執(zhí)行算術(shù)操作? Jun 19, 2025 pm 05:13 PM PHP中使用基本數(shù)學運算的方法如下:1.加法用 號,支持整數(shù)和浮點數(shù),也可用于變量,字符串數(shù)字會自動轉(zhuǎn)換但不推薦依賴;2.減法用-號,變量同理,類型轉(zhuǎn)換同樣適用;3.乘法用*號,適用于數(shù)字及類似字符串;4.除法用/號,需避免除以零,并注意結(jié)果可能是浮點數(shù);5.取模用%號,可用于判斷奇偶數(shù),處理負數(shù)時余數(shù)符號與被除數(shù)一致。正確使用這些運算符的關(guān)鍵在于確保數(shù)據(jù)類型清晰并處理好邊界情況。 如何與PHP的NOSQL數(shù)據(jù)庫(例如MongoDB,Redis)進行交互? Jun 19, 2025 am 01:07 AM 是的,PHP可以通過特定擴展或庫與MongoDB和Redis等NoSQL數(shù)據(jù)庫交互。首先,使用MongoDBPHP驅(qū)動(通過PECL或Composer安裝)創(chuàng)建客戶端實例并操作數(shù)據(jù)庫及集合,支持插入、查詢、聚合等操作;其次,使用Predis庫或phpredis擴展連接Redis,執(zhí)行鍵值設(shè)置與獲取,推薦phpredis用于高性能場景,Predis則便于快速部署;兩者均適用于生產(chǎn)環(huán)境且文檔完善。 我如何了解最新的PHP開發(fā)和最佳實踐? Jun 23, 2025 am 12:56 AM TostaycurrentwithPHPdevelopmentsandbestpractices,followkeynewssourceslikePHP.netandPHPWeekly,engagewithcommunitiesonforumsandconferences,keeptoolingupdatedandgraduallyadoptnewfeatures,andreadorcontributetoopensourceprojects.First,followreliablesource 什么是PHP,為什么它用于Web開發(fā)? Jun 23, 2025 am 12:55 AM PHPbecamepopularforwebdevelopmentduetoitseaseoflearning,seamlessintegrationwithHTML,widespreadhostingsupport,andalargeecosystemincludingframeworkslikeLaravelandCMSplatformslikeWordPress.Itexcelsinhandlingformsubmissions,managingusersessions,interacti 如何設(shè)置PHP時區(qū)? Jun 25, 2025 am 01:00 AM tosetTherightTimeZoneInphp,restate_default_timezone_set()functionAtthestArtofyourscriptWithavalIdidentIdentifiersuchas'america/new_york'.1.usedate_default_default_timezone_set_set() See all articles
So why should you do output buffering :<\/p> You can change the output just before sending it to browser if you need to. Think about doing some str_replaces , or may be preg_replaces or may be adding some extra html at the end like profiler\/debugger output Its a bad idea to send output to browser and do php processing at the same time. Have you ever seen a website where there is a Fatal error in the sidebar or in a box in the middle of the screen. You know why that happens ? Because processing and output are being mixed. 8. Send correct mime types via header when outputting non-html content
Lets echo some xml.<\/p>
$xml = '';$xml = \" 0<\/code><\/response>\";\/\/Send xml dataecho $xml;<\/pre> Works fine. But it needs some improvement.<\/p> $xml = '';$xml = \" 0<\/code><\/response>\";\/\/Send xml dataheader(\"content-type: text\/xml\");echo $xml;<\/pre> Note that header line. That line tells the browser that the content is xml content. So the browser can handle it correctly. Many javascript libraries also rely on header information.<\/p> Similarly for javascript , css , jpg image , png image :<\/p> Javascript<\/p> header(\"content-type: application\/x-javascript\");echo \"var a = 10\";<\/pre> CSS<\/p> header(\"content-type: text\/css\");echo \"#div id { background:#000; }\";<\/pre> 9. Set the correct character encoding for a mysql connection Ever faced a problem that unicode\/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation.<\/p> $host = 'localhost';$username = 'root';$password = 'super_secret';\/\/Attempt to connect to database$c = mysqli_connect($host , $username, $password);\t\t\/\/Check connection validityif (!$c) {\tdie (\"Could not connect to the database host: \". mysqli_connect_error());}\t\t\/\/Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){\tdie('mysqli_set_charset() failed');}<\/pre> Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application.<\/p> Otherwise what will happen ? You will see lots of boxes and ???????? in non english text.<\/p> 10. Use htmlentities with the correct characterset option Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc.<\/p> $value = htmlentities($this->value , ENT_QUOTES , 'UTF-8');<\/pre> Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual.<\/p> 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php.<\/p> Use apache mod_gzip\/mod_deflate to compress content via the .htaccess file.<\/p> 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php.<\/p> $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= \"'$image' ,\";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;\/\/Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,];<\/pre> Be smart. use json_encode :<\/p> $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;\/\/Output is : var images = [\"myself.png\",\"friends.png\",\"colleagues.png\"]<\/pre> Isn't that neat ?<\/p> 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of \"debugging\" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on.<\/p> Make sure that your application is as intelligent as possible and reports the most important information in the shortest time.<\/p> $contents = \"All the content\";$file_path = \"\/var\/www\/project\/content.txt\";file_put_contents($file_path , $contents);<\/pre> That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons :<\/p> Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file.<\/p> $contents = \"All the content\";$dir = '\/var\/www\/project';$file_path = $dir . \"\/content.txt\";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die(\"Directory $dir is not writable, or does not exist. Please check\");}<\/pre> By doing this you get the accurate information that where is a file write failing and why<\/p> 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are \"accessible\" outside. Otherwise for example the files may be created by \"php\" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on.<\/p> \/\/ Read and write for owner, read for everybody elsechmod(\"\/somedir\/somefile\", 0644);\/\/ Everything for owner, read and execute for otherschmod(\"\/somedir\/somefile\", 0755);<\/pre> 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ \/\/Save the things}<\/pre> The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this :<\/p> if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ \/\/Save the things}<\/pre> Now you are free from the value the submit button<\/p> 16. Use static variables in function where they always have same value \/\/Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); \t echo \"Delaying for $sync_delay seconds...\"; sleep($sync_delay); echo \"Done \";}<\/pre> Instead use static variables as :<\/p> \/\/Delay for some timefunction delay(){ static $sync_delay = null;\t if($sync_delay == null) {\t$sync_delay = get_option('sync_delay'); }\t echo \"Delaying for $sync_delay seconds...\"; sleep($sync_delay); echo \"Done \";}<\/pre> 17. Don't use the $_SESSION variable directly Some simple examples are :<\/p> $_SESSION['username'] = $username;$username = $_SESSION['username'];<\/pre> But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain.<\/p> Hence use application specific keys with wrapper functions :<\/p> define('APP_ID' , 'abc_corp_ecommerce');\/\/Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}\/\/Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;}<\/pre> 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like :<\/p> function utility_a(){ \/\/This function does a utility thing like string processing}function utility_b(){ \/\/This function does nother utility thing like database processing}function utility_c(){ \/\/This function is ...}<\/pre> And you use the function throughout your application freely. You may want to wrap them into a class as static functions :<\/p> class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}\/\/and call them as $a = Utility::utility_a();$b = Utility::utility_b();<\/pre> One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else.<\/p> 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++;<\/pre> Its absolutely a WASTE.<\/p> Write<\/p> if($a == true){ $a_count++;}<\/pre> Dont try to make your code shorter by eating up syntax. Rather make your logic shorter.<\/p> Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this :<\/p> foreach($arr as $c => $v){\t$arr[$c] = trim($v);}<\/pre> But it can more cleaner with array_map :<\/p> $arr = array_map('trim' , $arr);<\/pre> This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more.<\/p> 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters.<\/p> The php filter extension provides simple way to validate or check values as being a valid 'something'.<\/p> 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate'];<\/pre> Its a good habit.<\/p> 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose<\/p> 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded :<\/p> $db_records_in_array_format; \/\/This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; \/\/2MB moresome_function($cc); \/\/Another 2MB ?<\/pre> The above thing is common when importing a csv file or exporting table to a csv file<\/p> Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays.<\/p> Consider passing them by reference , or storing them in a class variable :<\/p> $a = get_large_array();pass_to_function(&$a);<\/pre> by doing this the same variable (and not its copy) will be available to the function. Check documentation<\/p> class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { \/\/process $this->a }}<\/pre> unset them as soon as possible , so that memory is freed and rest of the script can relax.<\/p> Here is a simple demonstration of how assign by reference can save memory in some cases<\/p> ';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() \/ 1000000 . '';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() \/ 1000000 . '';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() \/ 1000000 . '';<\/pre> The output on a typical php 5.4 machine is :<\/p> Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 <\/p> So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more.<\/p> 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this :<\/p> function add_to_cart(){ $db = new Database(); $db->query(\"INSERT INTO cart .....\");}function empty_cart(){ $db = new Database(); $db->query(\"DELETE FROM cart .....\");}<\/pre> Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory.<\/p> Use the singleton pattern for special cases like database connection.<\/p> 26. Avoid direct SQL query , abstract it $query = \"INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')\";$db->query($query); \/\/call to mysqli_query()<\/pre> The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like:<\/p> All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord<\/p> It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries.<\/p> A very simple example of an activerecord insert function can be like this :<\/p> function insert_record($table_name , $data){ foreach($data as $key => $value) {\t\/\/mysqli_real_escape_string $data[$key] = $db->mres($value); }\t\t $fields = implode(',' , array_keys($data)); $values = \"'\" . implode(\"','\" , array_values($data)) . \"'\"; \/\/Final query\t $query = \"INSERT INTO {$table}($fields) VALUES($values)\";\t\t return $db->query($query);}\/\/data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);\/\/perform the INSERT queryinsert_record('users' , $data);<\/pre> The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse).<\/p> This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise.<\/p> 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again.<\/p> Benefits :<\/p> Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue.<\/p> Storing session in database makes many other things easier like:<\/p> Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines\/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example :<\/p> <\/head> <\/body><\/html><\/pre> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories.<\/p> Lets take an example<\/p> www.domain.com\/store\/home.php www.domain.com\/store\/products\/ipad.php<\/p> In home.php the following can be written :<\/p> Home<\/a>Ipad<\/a><\/pre> But in ipad.php the links have to be like this :<\/p> Home<\/a>Ipad<\/a><\/pre> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag.<\/p> <\/head>Home<\/a>Ipad<\/a><\/body><\/html><\/pre> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products\/ipad.php<\/p> 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing.<\/p> ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT);<\/pre> On production , the display should be disabled.<\/p> ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark.<\/p> After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set.<\/p> ini_set('log_errors' , '1');ini_set('error_log' , '\/path\/to\/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> Note :<\/p> 1. The path '\/path\/to\/errors.txt' should be writable by the web server for errors to be logged there.<\/p> 2. A separate error file is specified , otherwise all logs would go inside the apache\/web server error log and get mixed up with other apache errors.<\/p> 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver).<\/p> 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like \/var\/log dont have to searched.<\/p> 5. Dont set error_reporting to 0. It will not log anything then.<\/p> Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file.<\/p> Set 'display_errors=On' in php.ini on development machine<\/p> On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page.<\/p> Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work.<\/p> Set 'display_errors=Off' in php.ini on production machine<\/p> Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away.<\/p> 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results.<\/p> On a 64 bit machine you can see such output.<\/p> $ php -aInteractive shellphp > echo strtotime(\"0000-00-00 00:00:00\");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600<\/pre> But on a 32 bit machine all of them would give bool(false). Check here for more.<\/p> What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines.<\/p> 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this :<\/p> set_time_limit(30);\/\/Rest of the code<\/pre> It may not always work. Any execution that happens outside the script via system calls\/os functions like socket operations, database operations etc. will not be under control of set_time_limit.<\/p> So if a database operation takes lot of time or \"hangs\" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time.<\/p> 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it.<\/p> A better solution :<\/p> \/**\tMethod to execute a command in the terminal\tUses :\t1. system\t2. passthru\t3. exec\t4. shell_exec*\/function terminal($command){\t\/\/system\tif(function_exists('system'))\t{\t\tob_start();\t\tsystem($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/passthru\telse if(function_exists('passthru'))\t{\t\tob_start();\t\tpassthru($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/exec\telse if(function_exists('exec'))\t{\t\texec($command , $output , $return_var);\t\t$output = implode(\"\\n\" , $output);\t}\t\/\/shell_exec\telse if(function_exists('shell_exec'))\t{\t\t$output = shell_exec($command) ;\t}\telse\t{\t\t$output = 'Command execution not possible on this system';\t\t$return_var = 1;\t}\treturn array('output' => $output , 'status' => $return_var);}terminal('ls');<\/pre> The above function will execute the shell command using whichever function is available , keeping your code consistent.<\/p> 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user.<\/p> 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise.<\/p> Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind.<\/p> 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily.<\/p> Few popular libraries are :<\/p> mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference.<\/p> 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code.<\/p> Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community.<\/p> They contain user feedback, expert advice and useful code snippets. So check them out.<\/p> 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!!<\/p> 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc.<\/p> The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more<\/p> 1. Codeigniter 2. WordPress 3. Joomla CMS<\/p> 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment.<\/p> Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster.<\/p> Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free.<\/p> "} 社區(qū) 文章 合集 問答 學習 課程 編程詞典 工具庫 開發(fā)工具 網(wǎng)站源碼 PHP 庫 JS特效 網(wǎng)站素材 擴展插件 AI工具 休閑 游戲下載 游戲教程 簡體中文 簡體中文 English 繁體中文 日本語 ??? Melayu Fran?ais Deutsch Login singup 首頁 后端開發(fā) php教程 40+ Useful Php tips for beginners ? Part 1 40+ Useful Php tips for beginners ? Part 1 WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB Jun 23, 2016 pm 02:37 PM PHP學習指南 http://www.binarytides.com/category/php-2/tutorial/ In this series we are going to look into some useful tips and techniques that can be used to improve and optimise your php code. Note that these php tips are meant for beginners and not those who are already using mvc frameworks etc. The Techniques 1. Do not use relative paths , instead define a ROOT path Its quite common to see such lines : require_once('http://www.cnblogs.com/lib/some_class.php'); This approach has many drawbacks : It first searches for directories specified in the include paths of php , then looks from the current directory. So many directories are checked. When a script is included by another script in a different directory , its base directory changes to that of the including script. Another issue , is that when a script is being run from cron , it may not have its parent directory as the working directory. So its a good idea to have absolute paths : define('ROOT' , '/var/www/project/');require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code Now this is an absolute path and will always stay constant. But we can improve this further. The directory /var/www/project can change , so do we change it everytime ? No instead we make it portable using magic constants like __FILE__ . Take a closer look : //suppose your script is /var/www/project/index.php//Then __FILE__ will always have that full path.define('ROOT' , pathinfo(__FILE__, PATHINFO_DIRNAME));require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code So now even if you shift your project to a different directory , like moving it to an online server , the same code will run without any changes. 2. Dont use require , include , require_once or include_once Your script could be including various files on top , like class libraries , files for utility and helper functions etc like this : require_once('lib/Database.php');require_once('lib/Mail.php');require_once('helpers/utitlity_functions.php'); This is rather primitive. The code needs to be more flexible. Write up helper functions to include things more easily. Lets take an example : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); require_once( $path ); }load_class('Database');load_class('Mail'); See any difference ? You must. It does not need any more explanation. You can improve this further if you wish to like this : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); if(file_exists($path)) { require_once( $path ); }} There are a lot of things that can be done with this : Search multiple directories for the same class file. Change the directory containing class files easily , without breaking the code anywhere. Use similar functions for loading files that contain helper functions , html content etc. 3. Maintain debugging environment in your application During development we echo database queries , dump variables which are creating problems , and then once the problem is solved , we comment them or erase them. But its a good idea to let everything stay and help in the long run On your development machine you can do this : define('ENVIRONMENT' , 'development');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } And on the server you can do this : define('ENVIRONMENT' , 'production');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } 4. Propagate status messages via session Status messages are those messages that are generated after doing a task. <?phpif($wrong_username || $wrong_password){ $msg = 'Invalid username or password';}?><html><body><?php echo $msg; ?><form>...</form></body></html> Code like that is common. Using variables to show status messages has limitations. They cannot be send via redirects (unless you propagate them as GET variables to the next script , which is very silly). In large scripts there might be multiple messages etc. Best way is to use session to propagate them (even if on same page). For this there has to be a session_start on every page. function set_flash($msg){ $_SESSION['message'] = $msg;}function get_flash(){ $msg = $_SESSION['message']; unset($_SESSION['message']); return $msg;} and in your script : <?phpif($wrong_username || $wrong_password){ set_flash('Invalid username or password');}?><html><body>Status is : <?php echo get_flash(); ?><form>...</form></body></html> 5. Make your functions flexible function add_to_cart($item_id , $qty){ $_SESSION['cart'][$item_id] = $qty;}add_to_cart( 'IPHONE3' , 2 ); When adding a single item you use the above function. When adding multiple items , will you create another function ? NO. Just make the function flexible enough to take different kinds of parameters. Have a closer look : function add_to_cart($item_id , $qty){ if(!is_array($item_id)) { $_SESSION['cart'][$item_id] = $qty; } else { foreach($item_id as $i_id => $qty) { $_SESSION['cart'][$i_id] = $qty; } }}add_to_cart( 'IPHONE3' , 2 );add_to_cart( array('IPHONE3' => 2 , 'IPAD' => 5) ); So now the same function can accept different kinds of output. The above can be applied in lots of places to make your code more agile. 6. Omit the closing php tag if it is the last thing in a script I wonder why this tip is omitted from so many blog posts on php tips. <?phpecho "Hello";//Now dont close this tag This will save you lots of problem. Lets take an example : A class file super_class.php <?phpclass super_class{ function super_function() { //super code }}?>//super extra character after the closing tag Now index.php require_once('super_class.php');//echo an image or pdf , or set the cookies or session data And you will get Headers already send error. Why ? because the "super extra character" has been echoed , and all headers went along with that. Now you start debugging. You may have to waste many hours to find the super extra space. Hence make it a habit to omit the closing tag : <?phpclass super_class{ function super_function() { //super code }}//No closing tag Thats better. 7. Collect all output at one place , and output at one shot to the browser This is called output buffering. Lets say you have been echoing content from different functions like this : function print_header(){ echo "<div id='header'>Site Log and Login links</div>";}function print_footer(){ echo "<div id='footer'>Site was made by me</div>";}print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}print_footer(); Instead of doing like that , first collect all output in one place. You can either store it inside variables in the functions or use ob_start and ob_end_clean. So now it should look like function print_header(){ $o = "<div id='header'>Site Log and Login links</div>"; return $o;}function print_footer(){ $o = "<div id='footer'>Site was made by me</div>"; return $o;}echo print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}echo print_footer(); So why should you do output buffering : You can change the output just before sending it to browser if you need to. Think about doing some str_replaces , or may be preg_replaces or may be adding some extra html at the end like profiler/debugger output Its a bad idea to send output to browser and do php processing at the same time. Have you ever seen a website where there is a Fatal error in the sidebar or in a box in the middle of the screen. You know why that happens ? Because processing and output are being mixed. 8. Send correct mime types via header when outputting non-html content Lets echo some xml. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataecho $xml; Works fine. But it needs some improvement. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataheader("content-type: text/xml");echo $xml; Note that header line. That line tells the browser that the content is xml content. So the browser can handle it correctly. Many javascript libraries also rely on header information. Similarly for javascript , css , jpg image , png image : Javascript header("content-type: application/x-javascript");echo "var a = 10"; CSS header("content-type: text/css");echo "#div id { background:#000; }"; 9. Set the correct character encoding for a mysql connection Ever faced a problem that unicode/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation. $host = 'localhost';$username = 'root';$password = 'super_secret';//Attempt to connect to database$c = mysqli_connect($host , $username, $password); //Check connection validityif (!$c) { die ("Could not connect to the database host: <br />". mysqli_connect_error());} //Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){ die('mysqli_set_charset() failed');} Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application. Otherwise what will happen ? You will see lots of boxes and ???????? in non english text. 10. Use htmlentities with the correct characterset option Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc. $value = htmlentities($this->value , ENT_QUOTES , 'UTF-8'); Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual. 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php. Use apache mod_gzip/mod_deflate to compress content via the .htaccess file. 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php. $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= "'$image' ,";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;//Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,]; Be smart. use json_encode : $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;//Output is : var images = ["myself.png","friends.png","colleagues.png"] Isn't that neat ? 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of "debugging" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on. Make sure that your application is as intelligent as possible and reports the most important information in the shortest time. $contents = "All the content";$file_path = "/var/www/project/content.txt";file_put_contents($file_path , $contents); That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons : Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file. $contents = "All the content";$dir = '/var/www/project';$file_path = $dir . "/content.txt";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die("Directory $dir is not writable, or does not exist. Please check");} By doing this you get the accurate information that where is a file write failing and why 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are "accessible" outside. Otherwise for example the files may be created by "php" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on. // Read and write for owner, read for everybody elsechmod("/somedir/somefile", 0644);// Everything for owner, read and execute for otherschmod("/somedir/somefile", 0755); 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ //Save the things} The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this : if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ //Save the things} Now you are free from the value the submit button 16. Use static variables in function where they always have same value //Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} Instead use static variables as : //Delay for some timefunction delay(){ static $sync_delay = null; if($sync_delay == null) { $sync_delay = get_option('sync_delay'); } echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} 17. Don't use the $_SESSION variable directly Some simple examples are : $_SESSION['username'] = $username;$username = $_SESSION['username']; But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain. Hence use application specific keys with wrapper functions : define('APP_ID' , 'abc_corp_ecommerce');//Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}//Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;} 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like : function utility_a(){ //This function does a utility thing like string processing}function utility_b(){ //This function does nother utility thing like database processing}function utility_c(){ //This function is ...} And you use the function throughout your application freely. You may want to wrap them into a class as static functions : class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}//and call them as $a = Utility::utility_a();$b = Utility::utility_b(); One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else. 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++; Its absolutely a WASTE. Write if($a == true){ $a_count++;} Dont try to make your code shorter by eating up syntax. Rather make your logic shorter. Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this : foreach($arr as $c => $v){ $arr[$c] = trim($v);} But it can more cleaner with array_map : $arr = array_map('trim' , $arr); This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more. 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters. The php filter extension provides simple way to validate or check values as being a valid 'something'. 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate']; Its a good habit. 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded : $db_records_in_array_format; //This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; //2MB moresome_function($cc); //Another 2MB ? The above thing is common when importing a csv file or exporting table to a csv file Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays. Consider passing them by reference , or storing them in a class variable : $a = get_large_array();pass_to_function(&$a); by doing this the same variable (and not its copy) will be available to the function. Check documentation class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { //process $this->a }} unset them as soon as possible , so that memory is freed and rest of the script can relax. Here is a simple demonstration of how assign by reference can save memory in some cases <?phpini_set('display_errors' , true);error_reporting(E_ALL);$a = array();for($i = 0; $i < 100000 ; $i++){ $a[$i] = 'A'.$i;}echo 'Memory usage in MB : '. memory_get_usage() / 1000000 . '<br />';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() / 1000000 . '<br />';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() / 1000000 . '<br />';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() / 1000000 . '<br />'; The output on a typical php 5.4 machine is : Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more. 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this : function add_to_cart(){ $db = new Database(); $db->query("INSERT INTO cart .....");}function empty_cart(){ $db = new Database(); $db->query("DELETE FROM cart .....");} Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory. Use the singleton pattern for special cases like database connection. 26. Avoid direct SQL query , abstract it $query = "INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')";$db->query($query); //call to mysqli_query() The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like: All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries. A very simple example of an activerecord insert function can be like this : function insert_record($table_name , $data){ foreach($data as $key => $value) { //mysqli_real_escape_string $data[$key] = $db->mres($value); } $fields = implode(',' , array_keys($data)); $values = "'" . implode("','" , array_values($data)) . "'"; //Final query $query = "INSERT INTO {$table}($fields) VALUES($values)"; return $db->query($query);}//data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);//perform the INSERT queryinsert_record('users' , $data); The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse). This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise. 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again. Benefits : Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue. Storing session in database makes many other things easier like: Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example : <head> <base href="http://www.domain.com/store/"></head><body> <img src="/static/imghw/default1.png" data-src="happy.jpg" class="lazy" / alt="40+ Useful Php tips for beginners ? Part 1" ></body></html> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories. Lets take an example www.domain.com/store/home.php www.domain.com/store/products/ipad.php In home.php the following can be written : <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> But in ipad.php the links have to be like this : <a href="../home.php">Home</a><a href="ipad.php">Ipad</a> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag. <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products/ipad.php 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing. ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT); On production , the display should be disabled. ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark. After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set. ini_set('log_errors' , '1');ini_set('error_log' , '/path/to/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); Note : 1. The path '/path/to/errors.txt' should be writable by the web server for errors to be logged there. 2. A separate error file is specified , otherwise all logs would go inside the apache/web server error log and get mixed up with other apache errors. 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver). 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like /var/log dont have to searched. 5. Dont set error_reporting to 0. It will not log anything then. Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file. Set 'display_errors=On' in php.ini on development machine On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page. Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work. Set 'display_errors=Off' in php.ini on production machine Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away. 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results. On a 64 bit machine you can see such output. $ php -aInteractive shellphp > echo strtotime("0000-00-00 00:00:00");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600 But on a 32 bit machine all of them would give bool(false). Check here for more. What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines. 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this : set_time_limit(30);//Rest of the code It may not always work. Any execution that happens outside the script via system calls/os functions like socket operations, database operations etc. will not be under control of set_time_limit. So if a database operation takes lot of time or "hangs" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time. 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it. A better solution : /** Method to execute a command in the terminal Uses : 1. system 2. passthru 3. exec 4. shell_exec*/function terminal($command){ //system if(function_exists('system')) { ob_start(); system($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //passthru else if(function_exists('passthru')) { ob_start(); passthru($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //exec else if(function_exists('exec')) { exec($command , $output , $return_var); $output = implode("\n" , $output); } //shell_exec else if(function_exists('shell_exec')) { $output = shell_exec($command) ; } else { $output = 'Command execution not possible on this system'; $return_var = 1; } return array('output' => $output , 'status' => $return_var);}terminal('ls'); The above function will execute the shell command using whichever function is available , keeping your code consistent. 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user. 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise. Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind. 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily. Few popular libraries are : mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference. 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code. Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community. They contain user feedback, expert advice and useful code snippets. So check them out. 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!! 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc. The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more 1. Codeigniter 2. WordPress 3. Joomla CMS 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment. Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster. Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free. 本站聲明 本文內(nèi)容由網(wǎng)友自發(fā)貢獻,版權(quán)歸原作者所有,本站不承擔相應(yīng)法律責任。如您發(fā)現(xiàn)有涉嫌抄襲侵權(quán)的內(nèi)容,請聯(lián)系admin@php.cn 熱AI工具 Undress AI Tool 免費脫衣服圖片 Undresser.AI Undress 人工智能驅(qū)動的應(yīng)用程序,用于創(chuàng)建逼真的裸體照片 AI Clothes Remover 用于從照片中去除衣服的在線人工智能工具。 Clothoff.io AI脫衣機 Video Face Swap 使用我們完全免費的人工智能換臉工具輕松在任何視頻中換臉! 顯示更多 熱門文章 指南:恒星刀片保存文件位置/保存文件丟失/不保存 4 周前 By DDD Oguri Cap Build Guide |漂亮的德比志 2 周前 By Jack chen Agnes Tachyon Build Guide |漂亮的德比志 1 周前 By Jack chen 沙丘:覺醒 - 高級行星學家Quest演練 4 周前 By Jack chen 約會一切:德克和哈珀關(guān)系指南 4 周前 By Jack chen 顯示更多 熱工具 記事本++7.3.1 好用且免費的代碼編輯器 SublimeText3漢化版 中文版,非常好用 禪工作室 13.0.1 功能強大的PHP集成開發(fā)環(huán)境 Dreamweaver CS6 視覺化網(wǎng)頁開發(fā)工具 SublimeText3 Mac版 神級代碼編輯軟件(SublimeText3) 顯示更多 熱門話題 gmail郵箱登陸入口在哪里 8638 17 Java教程 1783 16 CakePHP 教程 1728 56 Laravel 教程 1578 28 PHP教程 1442 31 顯示更多 Related knowledge 如何在PHP中實施身份驗證和授權(quán)? Jun 20, 2025 am 01:03 AM tosecurelyhandleauthenticationandationallizationInphp,lofterTheSesteps:1.AlwaysHashPasswordSwithPassword_hash()andverifyusingspasspassword_verify(),usepreparedStatatementStopreventsqlineptions,andStoreSeruserDatain usseruserDatain $ _sessiveferterlogin.2.implementrole-2.imaccessccsccccccccccccccccccccccccc. 如何在PHP中安全地處理文件上傳? Jun 19, 2025 am 01:05 AM 要安全處理PHP中的文件上傳,核心在于驗證文件類型、重命名文件并限制權(quán)限。1.使用finfo_file()檢查真實MIME類型,僅允許特定類型如image/jpeg;2.用uniqid()生成隨機文件名,存儲至非Web根目錄;3.通過php.ini和HTML表單限制文件大小,設(shè)置目錄權(quán)限為0755;4.使用ClamAV掃描惡意軟件,增強安全性。這些步驟有效防止安全漏洞,確保文件上傳過程安全可靠。 PHP中==(松散比較)和===(嚴格的比較)之間有什么區(qū)別? Jun 19, 2025 am 01:07 AM 在PHP中,==與===的主要區(qū)別在于類型檢查的嚴格程度。==在比較前會進行類型轉(zhuǎn)換,例如5=="5"返回true,而===要求值和類型都相同才會返回true,例如5==="5"返回false。使用場景上,===更安全應(yīng)優(yōu)先使用,==僅在需要類型轉(zhuǎn)換時使用。 如何在PHP( - , *, /,%)中執(zhí)行算術(shù)操作? Jun 19, 2025 pm 05:13 PM PHP中使用基本數(shù)學運算的方法如下:1.加法用 號,支持整數(shù)和浮點數(shù),也可用于變量,字符串數(shù)字會自動轉(zhuǎn)換但不推薦依賴;2.減法用-號,變量同理,類型轉(zhuǎn)換同樣適用;3.乘法用*號,適用于數(shù)字及類似字符串;4.除法用/號,需避免除以零,并注意結(jié)果可能是浮點數(shù);5.取模用%號,可用于判斷奇偶數(shù),處理負數(shù)時余數(shù)符號與被除數(shù)一致。正確使用這些運算符的關(guān)鍵在于確保數(shù)據(jù)類型清晰并處理好邊界情況。 如何與PHP的NOSQL數(shù)據(jù)庫(例如MongoDB,Redis)進行交互? Jun 19, 2025 am 01:07 AM 是的,PHP可以通過特定擴展或庫與MongoDB和Redis等NoSQL數(shù)據(jù)庫交互。首先,使用MongoDBPHP驅(qū)動(通過PECL或Composer安裝)創(chuàng)建客戶端實例并操作數(shù)據(jù)庫及集合,支持插入、查詢、聚合等操作;其次,使用Predis庫或phpredis擴展連接Redis,執(zhí)行鍵值設(shè)置與獲取,推薦phpredis用于高性能場景,Predis則便于快速部署;兩者均適用于生產(chǎn)環(huán)境且文檔完善。 我如何了解最新的PHP開發(fā)和最佳實踐? Jun 23, 2025 am 12:56 AM TostaycurrentwithPHPdevelopmentsandbestpractices,followkeynewssourceslikePHP.netandPHPWeekly,engagewithcommunitiesonforumsandconferences,keeptoolingupdatedandgraduallyadoptnewfeatures,andreadorcontributetoopensourceprojects.First,followreliablesource 什么是PHP,為什么它用于Web開發(fā)? Jun 23, 2025 am 12:55 AM PHPbecamepopularforwebdevelopmentduetoitseaseoflearning,seamlessintegrationwithHTML,widespreadhostingsupport,andalargeecosystemincludingframeworkslikeLaravelandCMSplatformslikeWordPress.Itexcelsinhandlingformsubmissions,managingusersessions,interacti 如何設(shè)置PHP時區(qū)? Jun 25, 2025 am 01:00 AM tosetTherightTimeZoneInphp,restate_default_timezone_set()functionAtthestArtofyourscriptWithavalIdidentIdentifiersuchas'america/new_york'.1.usedate_default_default_timezone_set_set() See all articles
0<\/code><\/response>\";\/\/Send xml dataecho $xml;<\/pre> Works fine. But it needs some improvement.<\/p> $xml = '';$xml = \" 0<\/code><\/response>\";\/\/Send xml dataheader(\"content-type: text\/xml\");echo $xml;<\/pre> Note that header line. That line tells the browser that the content is xml content. So the browser can handle it correctly. Many javascript libraries also rely on header information.<\/p> Similarly for javascript , css , jpg image , png image :<\/p> Javascript<\/p> header(\"content-type: application\/x-javascript\");echo \"var a = 10\";<\/pre> CSS<\/p> header(\"content-type: text\/css\");echo \"#div id { background:#000; }\";<\/pre> 9. Set the correct character encoding for a mysql connection Ever faced a problem that unicode\/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation.<\/p> $host = 'localhost';$username = 'root';$password = 'super_secret';\/\/Attempt to connect to database$c = mysqli_connect($host , $username, $password);\t\t\/\/Check connection validityif (!$c) {\tdie (\"Could not connect to the database host: \". mysqli_connect_error());}\t\t\/\/Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){\tdie('mysqli_set_charset() failed');}<\/pre> Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application.<\/p> Otherwise what will happen ? You will see lots of boxes and ???????? in non english text.<\/p> 10. Use htmlentities with the correct characterset option Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc.<\/p> $value = htmlentities($this->value , ENT_QUOTES , 'UTF-8');<\/pre> Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual.<\/p> 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php.<\/p> Use apache mod_gzip\/mod_deflate to compress content via the .htaccess file.<\/p> 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php.<\/p> $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= \"'$image' ,\";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;\/\/Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,];<\/pre> Be smart. use json_encode :<\/p> $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;\/\/Output is : var images = [\"myself.png\",\"friends.png\",\"colleagues.png\"]<\/pre> Isn't that neat ?<\/p> 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of \"debugging\" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on.<\/p> Make sure that your application is as intelligent as possible and reports the most important information in the shortest time.<\/p> $contents = \"All the content\";$file_path = \"\/var\/www\/project\/content.txt\";file_put_contents($file_path , $contents);<\/pre> That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons :<\/p> Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file.<\/p> $contents = \"All the content\";$dir = '\/var\/www\/project';$file_path = $dir . \"\/content.txt\";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die(\"Directory $dir is not writable, or does not exist. Please check\");}<\/pre> By doing this you get the accurate information that where is a file write failing and why<\/p> 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are \"accessible\" outside. Otherwise for example the files may be created by \"php\" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on.<\/p> \/\/ Read and write for owner, read for everybody elsechmod(\"\/somedir\/somefile\", 0644);\/\/ Everything for owner, read and execute for otherschmod(\"\/somedir\/somefile\", 0755);<\/pre> 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ \/\/Save the things}<\/pre> The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this :<\/p> if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ \/\/Save the things}<\/pre> Now you are free from the value the submit button<\/p> 16. Use static variables in function where they always have same value \/\/Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); \t echo \"Delaying for $sync_delay seconds...\"; sleep($sync_delay); echo \"Done \";}<\/pre> Instead use static variables as :<\/p> \/\/Delay for some timefunction delay(){ static $sync_delay = null;\t if($sync_delay == null) {\t$sync_delay = get_option('sync_delay'); }\t echo \"Delaying for $sync_delay seconds...\"; sleep($sync_delay); echo \"Done \";}<\/pre> 17. Don't use the $_SESSION variable directly Some simple examples are :<\/p> $_SESSION['username'] = $username;$username = $_SESSION['username'];<\/pre> But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain.<\/p> Hence use application specific keys with wrapper functions :<\/p> define('APP_ID' , 'abc_corp_ecommerce');\/\/Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}\/\/Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;}<\/pre> 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like :<\/p> function utility_a(){ \/\/This function does a utility thing like string processing}function utility_b(){ \/\/This function does nother utility thing like database processing}function utility_c(){ \/\/This function is ...}<\/pre> And you use the function throughout your application freely. You may want to wrap them into a class as static functions :<\/p> class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}\/\/and call them as $a = Utility::utility_a();$b = Utility::utility_b();<\/pre> One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else.<\/p> 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++;<\/pre> Its absolutely a WASTE.<\/p> Write<\/p> if($a == true){ $a_count++;}<\/pre> Dont try to make your code shorter by eating up syntax. Rather make your logic shorter.<\/p> Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this :<\/p> foreach($arr as $c => $v){\t$arr[$c] = trim($v);}<\/pre> But it can more cleaner with array_map :<\/p> $arr = array_map('trim' , $arr);<\/pre> This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more.<\/p> 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters.<\/p> The php filter extension provides simple way to validate or check values as being a valid 'something'.<\/p> 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate'];<\/pre> Its a good habit.<\/p> 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose<\/p> 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded :<\/p> $db_records_in_array_format; \/\/This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; \/\/2MB moresome_function($cc); \/\/Another 2MB ?<\/pre> The above thing is common when importing a csv file or exporting table to a csv file<\/p> Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays.<\/p> Consider passing them by reference , or storing them in a class variable :<\/p> $a = get_large_array();pass_to_function(&$a);<\/pre> by doing this the same variable (and not its copy) will be available to the function. Check documentation<\/p> class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { \/\/process $this->a }}<\/pre> unset them as soon as possible , so that memory is freed and rest of the script can relax.<\/p> Here is a simple demonstration of how assign by reference can save memory in some cases<\/p> ';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() \/ 1000000 . '';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() \/ 1000000 . '';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() \/ 1000000 . '';<\/pre> The output on a typical php 5.4 machine is :<\/p> Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 <\/p> So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more.<\/p> 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this :<\/p> function add_to_cart(){ $db = new Database(); $db->query(\"INSERT INTO cart .....\");}function empty_cart(){ $db = new Database(); $db->query(\"DELETE FROM cart .....\");}<\/pre> Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory.<\/p> Use the singleton pattern for special cases like database connection.<\/p> 26. Avoid direct SQL query , abstract it $query = \"INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')\";$db->query($query); \/\/call to mysqli_query()<\/pre> The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like:<\/p> All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord<\/p> It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries.<\/p> A very simple example of an activerecord insert function can be like this :<\/p> function insert_record($table_name , $data){ foreach($data as $key => $value) {\t\/\/mysqli_real_escape_string $data[$key] = $db->mres($value); }\t\t $fields = implode(',' , array_keys($data)); $values = \"'\" . implode(\"','\" , array_values($data)) . \"'\"; \/\/Final query\t $query = \"INSERT INTO {$table}($fields) VALUES($values)\";\t\t return $db->query($query);}\/\/data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);\/\/perform the INSERT queryinsert_record('users' , $data);<\/pre> The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse).<\/p> This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise.<\/p> 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again.<\/p> Benefits :<\/p> Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue.<\/p> Storing session in database makes many other things easier like:<\/p> Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines\/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example :<\/p> <\/head> <\/body><\/html><\/pre> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories.<\/p> Lets take an example<\/p> www.domain.com\/store\/home.php www.domain.com\/store\/products\/ipad.php<\/p> In home.php the following can be written :<\/p> Home<\/a>Ipad<\/a><\/pre> But in ipad.php the links have to be like this :<\/p> Home<\/a>Ipad<\/a><\/pre> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag.<\/p> <\/head>Home<\/a>Ipad<\/a><\/body><\/html><\/pre> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products\/ipad.php<\/p> 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing.<\/p> ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT);<\/pre> On production , the display should be disabled.<\/p> ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark.<\/p> After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set.<\/p> ini_set('log_errors' , '1');ini_set('error_log' , '\/path\/to\/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> Note :<\/p> 1. The path '\/path\/to\/errors.txt' should be writable by the web server for errors to be logged there.<\/p> 2. A separate error file is specified , otherwise all logs would go inside the apache\/web server error log and get mixed up with other apache errors.<\/p> 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver).<\/p> 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like \/var\/log dont have to searched.<\/p> 5. Dont set error_reporting to 0. It will not log anything then.<\/p> Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file.<\/p> Set 'display_errors=On' in php.ini on development machine<\/p> On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page.<\/p> Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work.<\/p> Set 'display_errors=Off' in php.ini on production machine<\/p> Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away.<\/p> 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results.<\/p> On a 64 bit machine you can see such output.<\/p> $ php -aInteractive shellphp > echo strtotime(\"0000-00-00 00:00:00\");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600<\/pre> But on a 32 bit machine all of them would give bool(false). Check here for more.<\/p> What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines.<\/p> 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this :<\/p> set_time_limit(30);\/\/Rest of the code<\/pre> It may not always work. Any execution that happens outside the script via system calls\/os functions like socket operations, database operations etc. will not be under control of set_time_limit.<\/p> So if a database operation takes lot of time or \"hangs\" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time.<\/p> 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it.<\/p> A better solution :<\/p> \/**\tMethod to execute a command in the terminal\tUses :\t1. system\t2. passthru\t3. exec\t4. shell_exec*\/function terminal($command){\t\/\/system\tif(function_exists('system'))\t{\t\tob_start();\t\tsystem($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/passthru\telse if(function_exists('passthru'))\t{\t\tob_start();\t\tpassthru($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/exec\telse if(function_exists('exec'))\t{\t\texec($command , $output , $return_var);\t\t$output = implode(\"\\n\" , $output);\t}\t\/\/shell_exec\telse if(function_exists('shell_exec'))\t{\t\t$output = shell_exec($command) ;\t}\telse\t{\t\t$output = 'Command execution not possible on this system';\t\t$return_var = 1;\t}\treturn array('output' => $output , 'status' => $return_var);}terminal('ls');<\/pre> The above function will execute the shell command using whichever function is available , keeping your code consistent.<\/p> 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user.<\/p> 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise.<\/p> Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind.<\/p> 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily.<\/p> Few popular libraries are :<\/p> mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference.<\/p> 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code.<\/p> Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community.<\/p> They contain user feedback, expert advice and useful code snippets. So check them out.<\/p> 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!!<\/p> 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc.<\/p> The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more<\/p> 1. Codeigniter 2. WordPress 3. Joomla CMS<\/p> 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment.<\/p> Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster.<\/p> Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free.<\/p> "} 社區(qū) 文章 合集 問答 學習 課程 編程詞典 工具庫 開發(fā)工具 網(wǎng)站源碼 PHP 庫 JS特效 網(wǎng)站素材 擴展插件 AI工具 休閑 游戲下載 游戲教程 簡體中文 簡體中文 English 繁體中文 日本語 ??? Melayu Fran?ais Deutsch Login singup 首頁 后端開發(fā) php教程 40+ Useful Php tips for beginners ? Part 1 40+ Useful Php tips for beginners ? Part 1 WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB Jun 23, 2016 pm 02:37 PM PHP學習指南 http://www.binarytides.com/category/php-2/tutorial/ In this series we are going to look into some useful tips and techniques that can be used to improve and optimise your php code. Note that these php tips are meant for beginners and not those who are already using mvc frameworks etc. The Techniques 1. Do not use relative paths , instead define a ROOT path Its quite common to see such lines : require_once('http://www.cnblogs.com/lib/some_class.php'); This approach has many drawbacks : It first searches for directories specified in the include paths of php , then looks from the current directory. So many directories are checked. When a script is included by another script in a different directory , its base directory changes to that of the including script. Another issue , is that when a script is being run from cron , it may not have its parent directory as the working directory. So its a good idea to have absolute paths : define('ROOT' , '/var/www/project/');require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code Now this is an absolute path and will always stay constant. But we can improve this further. The directory /var/www/project can change , so do we change it everytime ? No instead we make it portable using magic constants like __FILE__ . Take a closer look : //suppose your script is /var/www/project/index.php//Then __FILE__ will always have that full path.define('ROOT' , pathinfo(__FILE__, PATHINFO_DIRNAME));require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code So now even if you shift your project to a different directory , like moving it to an online server , the same code will run without any changes. 2. Dont use require , include , require_once or include_once Your script could be including various files on top , like class libraries , files for utility and helper functions etc like this : require_once('lib/Database.php');require_once('lib/Mail.php');require_once('helpers/utitlity_functions.php'); This is rather primitive. The code needs to be more flexible. Write up helper functions to include things more easily. Lets take an example : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); require_once( $path ); }load_class('Database');load_class('Mail'); See any difference ? You must. It does not need any more explanation. You can improve this further if you wish to like this : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); if(file_exists($path)) { require_once( $path ); }} There are a lot of things that can be done with this : Search multiple directories for the same class file. Change the directory containing class files easily , without breaking the code anywhere. Use similar functions for loading files that contain helper functions , html content etc. 3. Maintain debugging environment in your application During development we echo database queries , dump variables which are creating problems , and then once the problem is solved , we comment them or erase them. But its a good idea to let everything stay and help in the long run On your development machine you can do this : define('ENVIRONMENT' , 'development');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } And on the server you can do this : define('ENVIRONMENT' , 'production');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } 4. Propagate status messages via session Status messages are those messages that are generated after doing a task. <?phpif($wrong_username || $wrong_password){ $msg = 'Invalid username or password';}?><html><body><?php echo $msg; ?><form>...</form></body></html> Code like that is common. Using variables to show status messages has limitations. They cannot be send via redirects (unless you propagate them as GET variables to the next script , which is very silly). In large scripts there might be multiple messages etc. Best way is to use session to propagate them (even if on same page). For this there has to be a session_start on every page. function set_flash($msg){ $_SESSION['message'] = $msg;}function get_flash(){ $msg = $_SESSION['message']; unset($_SESSION['message']); return $msg;} and in your script : <?phpif($wrong_username || $wrong_password){ set_flash('Invalid username or password');}?><html><body>Status is : <?php echo get_flash(); ?><form>...</form></body></html> 5. Make your functions flexible function add_to_cart($item_id , $qty){ $_SESSION['cart'][$item_id] = $qty;}add_to_cart( 'IPHONE3' , 2 ); When adding a single item you use the above function. When adding multiple items , will you create another function ? NO. Just make the function flexible enough to take different kinds of parameters. Have a closer look : function add_to_cart($item_id , $qty){ if(!is_array($item_id)) { $_SESSION['cart'][$item_id] = $qty; } else { foreach($item_id as $i_id => $qty) { $_SESSION['cart'][$i_id] = $qty; } }}add_to_cart( 'IPHONE3' , 2 );add_to_cart( array('IPHONE3' => 2 , 'IPAD' => 5) ); So now the same function can accept different kinds of output. The above can be applied in lots of places to make your code more agile. 6. Omit the closing php tag if it is the last thing in a script I wonder why this tip is omitted from so many blog posts on php tips. <?phpecho "Hello";//Now dont close this tag This will save you lots of problem. Lets take an example : A class file super_class.php <?phpclass super_class{ function super_function() { //super code }}?>//super extra character after the closing tag Now index.php require_once('super_class.php');//echo an image or pdf , or set the cookies or session data And you will get Headers already send error. Why ? because the "super extra character" has been echoed , and all headers went along with that. Now you start debugging. You may have to waste many hours to find the super extra space. Hence make it a habit to omit the closing tag : <?phpclass super_class{ function super_function() { //super code }}//No closing tag Thats better. 7. Collect all output at one place , and output at one shot to the browser This is called output buffering. Lets say you have been echoing content from different functions like this : function print_header(){ echo "<div id='header'>Site Log and Login links</div>";}function print_footer(){ echo "<div id='footer'>Site was made by me</div>";}print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}print_footer(); Instead of doing like that , first collect all output in one place. You can either store it inside variables in the functions or use ob_start and ob_end_clean. So now it should look like function print_header(){ $o = "<div id='header'>Site Log and Login links</div>"; return $o;}function print_footer(){ $o = "<div id='footer'>Site was made by me</div>"; return $o;}echo print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}echo print_footer(); So why should you do output buffering : You can change the output just before sending it to browser if you need to. Think about doing some str_replaces , or may be preg_replaces or may be adding some extra html at the end like profiler/debugger output Its a bad idea to send output to browser and do php processing at the same time. Have you ever seen a website where there is a Fatal error in the sidebar or in a box in the middle of the screen. You know why that happens ? Because processing and output are being mixed. 8. Send correct mime types via header when outputting non-html content Lets echo some xml. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataecho $xml; Works fine. But it needs some improvement. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataheader("content-type: text/xml");echo $xml; Note that header line. That line tells the browser that the content is xml content. So the browser can handle it correctly. Many javascript libraries also rely on header information. Similarly for javascript , css , jpg image , png image : Javascript header("content-type: application/x-javascript");echo "var a = 10"; CSS header("content-type: text/css");echo "#div id { background:#000; }"; 9. Set the correct character encoding for a mysql connection Ever faced a problem that unicode/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation. $host = 'localhost';$username = 'root';$password = 'super_secret';//Attempt to connect to database$c = mysqli_connect($host , $username, $password); //Check connection validityif (!$c) { die ("Could not connect to the database host: <br />". mysqli_connect_error());} //Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){ die('mysqli_set_charset() failed');} Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application. Otherwise what will happen ? You will see lots of boxes and ???????? in non english text. 10. Use htmlentities with the correct characterset option Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc. $value = htmlentities($this->value , ENT_QUOTES , 'UTF-8'); Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual. 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php. Use apache mod_gzip/mod_deflate to compress content via the .htaccess file. 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php. $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= "'$image' ,";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;//Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,]; Be smart. use json_encode : $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;//Output is : var images = ["myself.png","friends.png","colleagues.png"] Isn't that neat ? 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of "debugging" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on. Make sure that your application is as intelligent as possible and reports the most important information in the shortest time. $contents = "All the content";$file_path = "/var/www/project/content.txt";file_put_contents($file_path , $contents); That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons : Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file. $contents = "All the content";$dir = '/var/www/project';$file_path = $dir . "/content.txt";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die("Directory $dir is not writable, or does not exist. Please check");} By doing this you get the accurate information that where is a file write failing and why 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are "accessible" outside. Otherwise for example the files may be created by "php" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on. // Read and write for owner, read for everybody elsechmod("/somedir/somefile", 0644);// Everything for owner, read and execute for otherschmod("/somedir/somefile", 0755); 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ //Save the things} The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this : if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ //Save the things} Now you are free from the value the submit button 16. Use static variables in function where they always have same value //Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} Instead use static variables as : //Delay for some timefunction delay(){ static $sync_delay = null; if($sync_delay == null) { $sync_delay = get_option('sync_delay'); } echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} 17. Don't use the $_SESSION variable directly Some simple examples are : $_SESSION['username'] = $username;$username = $_SESSION['username']; But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain. Hence use application specific keys with wrapper functions : define('APP_ID' , 'abc_corp_ecommerce');//Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}//Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;} 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like : function utility_a(){ //This function does a utility thing like string processing}function utility_b(){ //This function does nother utility thing like database processing}function utility_c(){ //This function is ...} And you use the function throughout your application freely. You may want to wrap them into a class as static functions : class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}//and call them as $a = Utility::utility_a();$b = Utility::utility_b(); One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else. 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++; Its absolutely a WASTE. Write if($a == true){ $a_count++;} Dont try to make your code shorter by eating up syntax. Rather make your logic shorter. Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this : foreach($arr as $c => $v){ $arr[$c] = trim($v);} But it can more cleaner with array_map : $arr = array_map('trim' , $arr); This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more. 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters. The php filter extension provides simple way to validate or check values as being a valid 'something'. 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate']; Its a good habit. 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded : $db_records_in_array_format; //This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; //2MB moresome_function($cc); //Another 2MB ? The above thing is common when importing a csv file or exporting table to a csv file Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays. Consider passing them by reference , or storing them in a class variable : $a = get_large_array();pass_to_function(&$a); by doing this the same variable (and not its copy) will be available to the function. Check documentation class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { //process $this->a }} unset them as soon as possible , so that memory is freed and rest of the script can relax. Here is a simple demonstration of how assign by reference can save memory in some cases <?phpini_set('display_errors' , true);error_reporting(E_ALL);$a = array();for($i = 0; $i < 100000 ; $i++){ $a[$i] = 'A'.$i;}echo 'Memory usage in MB : '. memory_get_usage() / 1000000 . '<br />';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() / 1000000 . '<br />';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() / 1000000 . '<br />';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() / 1000000 . '<br />'; The output on a typical php 5.4 machine is : Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more. 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this : function add_to_cart(){ $db = new Database(); $db->query("INSERT INTO cart .....");}function empty_cart(){ $db = new Database(); $db->query("DELETE FROM cart .....");} Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory. Use the singleton pattern for special cases like database connection. 26. Avoid direct SQL query , abstract it $query = "INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')";$db->query($query); //call to mysqli_query() The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like: All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries. A very simple example of an activerecord insert function can be like this : function insert_record($table_name , $data){ foreach($data as $key => $value) { //mysqli_real_escape_string $data[$key] = $db->mres($value); } $fields = implode(',' , array_keys($data)); $values = "'" . implode("','" , array_values($data)) . "'"; //Final query $query = "INSERT INTO {$table}($fields) VALUES($values)"; return $db->query($query);}//data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);//perform the INSERT queryinsert_record('users' , $data); The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse). This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise. 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again. Benefits : Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue. Storing session in database makes many other things easier like: Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example : <head> <base href="http://www.domain.com/store/"></head><body> <img src="/static/imghw/default1.png" data-src="happy.jpg" class="lazy" / alt="40+ Useful Php tips for beginners ? Part 1" ></body></html> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories. Lets take an example www.domain.com/store/home.php www.domain.com/store/products/ipad.php In home.php the following can be written : <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> But in ipad.php the links have to be like this : <a href="../home.php">Home</a><a href="ipad.php">Ipad</a> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag. <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products/ipad.php 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing. ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT); On production , the display should be disabled. ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark. After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set. ini_set('log_errors' , '1');ini_set('error_log' , '/path/to/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); Note : 1. The path '/path/to/errors.txt' should be writable by the web server for errors to be logged there. 2. A separate error file is specified , otherwise all logs would go inside the apache/web server error log and get mixed up with other apache errors. 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver). 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like /var/log dont have to searched. 5. Dont set error_reporting to 0. It will not log anything then. Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file. Set 'display_errors=On' in php.ini on development machine On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page. Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work. Set 'display_errors=Off' in php.ini on production machine Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away. 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results. On a 64 bit machine you can see such output. $ php -aInteractive shellphp > echo strtotime("0000-00-00 00:00:00");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600 But on a 32 bit machine all of them would give bool(false). Check here for more. What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines. 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this : set_time_limit(30);//Rest of the code It may not always work. Any execution that happens outside the script via system calls/os functions like socket operations, database operations etc. will not be under control of set_time_limit. So if a database operation takes lot of time or "hangs" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time. 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it. A better solution : /** Method to execute a command in the terminal Uses : 1. system 2. passthru 3. exec 4. shell_exec*/function terminal($command){ //system if(function_exists('system')) { ob_start(); system($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //passthru else if(function_exists('passthru')) { ob_start(); passthru($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //exec else if(function_exists('exec')) { exec($command , $output , $return_var); $output = implode("\n" , $output); } //shell_exec else if(function_exists('shell_exec')) { $output = shell_exec($command) ; } else { $output = 'Command execution not possible on this system'; $return_var = 1; } return array('output' => $output , 'status' => $return_var);}terminal('ls'); The above function will execute the shell command using whichever function is available , keeping your code consistent. 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user. 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise. Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind. 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily. Few popular libraries are : mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference. 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code. Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community. They contain user feedback, expert advice and useful code snippets. So check them out. 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!! 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc. The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more 1. Codeigniter 2. WordPress 3. Joomla CMS 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment. Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster. Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free. 本站聲明 本文內(nèi)容由網(wǎng)友自發(fā)貢獻,版權(quán)歸原作者所有,本站不承擔相應(yīng)法律責任。如您發(fā)現(xiàn)有涉嫌抄襲侵權(quán)的內(nèi)容,請聯(lián)系admin@php.cn 熱AI工具 Undress AI Tool 免費脫衣服圖片 Undresser.AI Undress 人工智能驅(qū)動的應(yīng)用程序,用于創(chuàng)建逼真的裸體照片 AI Clothes Remover 用于從照片中去除衣服的在線人工智能工具。 Clothoff.io AI脫衣機 Video Face Swap 使用我們完全免費的人工智能換臉工具輕松在任何視頻中換臉! 顯示更多 熱門文章 指南:恒星刀片保存文件位置/保存文件丟失/不保存 4 周前 By DDD Oguri Cap Build Guide |漂亮的德比志 2 周前 By Jack chen Agnes Tachyon Build Guide |漂亮的德比志 1 周前 By Jack chen 沙丘:覺醒 - 高級行星學家Quest演練 4 周前 By Jack chen 約會一切:德克和哈珀關(guān)系指南 4 周前 By Jack chen 顯示更多 熱工具 記事本++7.3.1 好用且免費的代碼編輯器 SublimeText3漢化版 中文版,非常好用 禪工作室 13.0.1 功能強大的PHP集成開發(fā)環(huán)境 Dreamweaver CS6 視覺化網(wǎng)頁開發(fā)工具 SublimeText3 Mac版 神級代碼編輯軟件(SublimeText3) 顯示更多 熱門話題 gmail郵箱登陸入口在哪里 8638 17 Java教程 1783 16 CakePHP 教程 1728 56 Laravel 教程 1578 28 PHP教程 1442 31 顯示更多 Related knowledge 如何在PHP中實施身份驗證和授權(quán)? Jun 20, 2025 am 01:03 AM tosecurelyhandleauthenticationandationallizationInphp,lofterTheSesteps:1.AlwaysHashPasswordSwithPassword_hash()andverifyusingspasspassword_verify(),usepreparedStatatementStopreventsqlineptions,andStoreSeruserDatain usseruserDatain $ _sessiveferterlogin.2.implementrole-2.imaccessccsccccccccccccccccccccccccc. 如何在PHP中安全地處理文件上傳? Jun 19, 2025 am 01:05 AM 要安全處理PHP中的文件上傳,核心在于驗證文件類型、重命名文件并限制權(quán)限。1.使用finfo_file()檢查真實MIME類型,僅允許特定類型如image/jpeg;2.用uniqid()生成隨機文件名,存儲至非Web根目錄;3.通過php.ini和HTML表單限制文件大小,設(shè)置目錄權(quán)限為0755;4.使用ClamAV掃描惡意軟件,增強安全性。這些步驟有效防止安全漏洞,確保文件上傳過程安全可靠。 PHP中==(松散比較)和===(嚴格的比較)之間有什么區(qū)別? Jun 19, 2025 am 01:07 AM 在PHP中,==與===的主要區(qū)別在于類型檢查的嚴格程度。==在比較前會進行類型轉(zhuǎn)換,例如5=="5"返回true,而===要求值和類型都相同才會返回true,例如5==="5"返回false。使用場景上,===更安全應(yīng)優(yōu)先使用,==僅在需要類型轉(zhuǎn)換時使用。 如何在PHP( - , *, /,%)中執(zhí)行算術(shù)操作? Jun 19, 2025 pm 05:13 PM PHP中使用基本數(shù)學運算的方法如下:1.加法用 號,支持整數(shù)和浮點數(shù),也可用于變量,字符串數(shù)字會自動轉(zhuǎn)換但不推薦依賴;2.減法用-號,變量同理,類型轉(zhuǎn)換同樣適用;3.乘法用*號,適用于數(shù)字及類似字符串;4.除法用/號,需避免除以零,并注意結(jié)果可能是浮點數(shù);5.取模用%號,可用于判斷奇偶數(shù),處理負數(shù)時余數(shù)符號與被除數(shù)一致。正確使用這些運算符的關(guān)鍵在于確保數(shù)據(jù)類型清晰并處理好邊界情況。 如何與PHP的NOSQL數(shù)據(jù)庫(例如MongoDB,Redis)進行交互? Jun 19, 2025 am 01:07 AM 是的,PHP可以通過特定擴展或庫與MongoDB和Redis等NoSQL數(shù)據(jù)庫交互。首先,使用MongoDBPHP驅(qū)動(通過PECL或Composer安裝)創(chuàng)建客戶端實例并操作數(shù)據(jù)庫及集合,支持插入、查詢、聚合等操作;其次,使用Predis庫或phpredis擴展連接Redis,執(zhí)行鍵值設(shè)置與獲取,推薦phpredis用于高性能場景,Predis則便于快速部署;兩者均適用于生產(chǎn)環(huán)境且文檔完善。 我如何了解最新的PHP開發(fā)和最佳實踐? Jun 23, 2025 am 12:56 AM TostaycurrentwithPHPdevelopmentsandbestpractices,followkeynewssourceslikePHP.netandPHPWeekly,engagewithcommunitiesonforumsandconferences,keeptoolingupdatedandgraduallyadoptnewfeatures,andreadorcontributetoopensourceprojects.First,followreliablesource 什么是PHP,為什么它用于Web開發(fā)? Jun 23, 2025 am 12:55 AM PHPbecamepopularforwebdevelopmentduetoitseaseoflearning,seamlessintegrationwithHTML,widespreadhostingsupport,andalargeecosystemincludingframeworkslikeLaravelandCMSplatformslikeWordPress.Itexcelsinhandlingformsubmissions,managingusersessions,interacti 如何設(shè)置PHP時區(qū)? Jun 25, 2025 am 01:00 AM tosetTherightTimeZoneInphp,restate_default_timezone_set()functionAtthestArtofyourscriptWithavalIdidentIdentifiersuchas'america/new_york'.1.usedate_default_default_timezone_set_set() See all articles
Works fine. But it needs some improvement.<\/p>
$xml = '';$xml = \" 0<\/code><\/response>\";\/\/Send xml dataheader(\"content-type: text\/xml\");echo $xml;<\/pre> Note that header line. That line tells the browser that the content is xml content. So the browser can handle it correctly. Many javascript libraries also rely on header information.<\/p> Similarly for javascript , css , jpg image , png image :<\/p> Javascript<\/p> header(\"content-type: application\/x-javascript\");echo \"var a = 10\";<\/pre> CSS<\/p> header(\"content-type: text\/css\");echo \"#div id { background:#000; }\";<\/pre> 9. Set the correct character encoding for a mysql connection Ever faced a problem that unicode\/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation.<\/p> $host = 'localhost';$username = 'root';$password = 'super_secret';\/\/Attempt to connect to database$c = mysqli_connect($host , $username, $password);\t\t\/\/Check connection validityif (!$c) {\tdie (\"Could not connect to the database host: \". mysqli_connect_error());}\t\t\/\/Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){\tdie('mysqli_set_charset() failed');}<\/pre> Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application.<\/p> Otherwise what will happen ? You will see lots of boxes and ???????? in non english text.<\/p> 10. Use htmlentities with the correct characterset option Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc.<\/p> $value = htmlentities($this->value , ENT_QUOTES , 'UTF-8');<\/pre> Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual.<\/p> 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php.<\/p> Use apache mod_gzip\/mod_deflate to compress content via the .htaccess file.<\/p> 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php.<\/p> $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= \"'$image' ,\";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;\/\/Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,];<\/pre> Be smart. use json_encode :<\/p> $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;\/\/Output is : var images = [\"myself.png\",\"friends.png\",\"colleagues.png\"]<\/pre> Isn't that neat ?<\/p> 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of \"debugging\" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on.<\/p> Make sure that your application is as intelligent as possible and reports the most important information in the shortest time.<\/p> $contents = \"All the content\";$file_path = \"\/var\/www\/project\/content.txt\";file_put_contents($file_path , $contents);<\/pre> That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons :<\/p> Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file.<\/p> $contents = \"All the content\";$dir = '\/var\/www\/project';$file_path = $dir . \"\/content.txt\";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die(\"Directory $dir is not writable, or does not exist. Please check\");}<\/pre> By doing this you get the accurate information that where is a file write failing and why<\/p> 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are \"accessible\" outside. Otherwise for example the files may be created by \"php\" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on.<\/p> \/\/ Read and write for owner, read for everybody elsechmod(\"\/somedir\/somefile\", 0644);\/\/ Everything for owner, read and execute for otherschmod(\"\/somedir\/somefile\", 0755);<\/pre> 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ \/\/Save the things}<\/pre> The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this :<\/p> if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ \/\/Save the things}<\/pre> Now you are free from the value the submit button<\/p> 16. Use static variables in function where they always have same value \/\/Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); \t echo \"Delaying for $sync_delay seconds...\"; sleep($sync_delay); echo \"Done \";}<\/pre> Instead use static variables as :<\/p> \/\/Delay for some timefunction delay(){ static $sync_delay = null;\t if($sync_delay == null) {\t$sync_delay = get_option('sync_delay'); }\t echo \"Delaying for $sync_delay seconds...\"; sleep($sync_delay); echo \"Done \";}<\/pre> 17. Don't use the $_SESSION variable directly Some simple examples are :<\/p> $_SESSION['username'] = $username;$username = $_SESSION['username'];<\/pre> But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain.<\/p> Hence use application specific keys with wrapper functions :<\/p> define('APP_ID' , 'abc_corp_ecommerce');\/\/Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}\/\/Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;}<\/pre> 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like :<\/p> function utility_a(){ \/\/This function does a utility thing like string processing}function utility_b(){ \/\/This function does nother utility thing like database processing}function utility_c(){ \/\/This function is ...}<\/pre> And you use the function throughout your application freely. You may want to wrap them into a class as static functions :<\/p> class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}\/\/and call them as $a = Utility::utility_a();$b = Utility::utility_b();<\/pre> One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else.<\/p> 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++;<\/pre> Its absolutely a WASTE.<\/p> Write<\/p> if($a == true){ $a_count++;}<\/pre> Dont try to make your code shorter by eating up syntax. Rather make your logic shorter.<\/p> Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this :<\/p> foreach($arr as $c => $v){\t$arr[$c] = trim($v);}<\/pre> But it can more cleaner with array_map :<\/p> $arr = array_map('trim' , $arr);<\/pre> This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more.<\/p> 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters.<\/p> The php filter extension provides simple way to validate or check values as being a valid 'something'.<\/p> 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate'];<\/pre> Its a good habit.<\/p> 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose<\/p> 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded :<\/p> $db_records_in_array_format; \/\/This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; \/\/2MB moresome_function($cc); \/\/Another 2MB ?<\/pre> The above thing is common when importing a csv file or exporting table to a csv file<\/p> Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays.<\/p> Consider passing them by reference , or storing them in a class variable :<\/p> $a = get_large_array();pass_to_function(&$a);<\/pre> by doing this the same variable (and not its copy) will be available to the function. Check documentation<\/p> class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { \/\/process $this->a }}<\/pre> unset them as soon as possible , so that memory is freed and rest of the script can relax.<\/p> Here is a simple demonstration of how assign by reference can save memory in some cases<\/p> ';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() \/ 1000000 . '';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() \/ 1000000 . '';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() \/ 1000000 . '';<\/pre> The output on a typical php 5.4 machine is :<\/p> Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 <\/p> So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more.<\/p> 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this :<\/p> function add_to_cart(){ $db = new Database(); $db->query(\"INSERT INTO cart .....\");}function empty_cart(){ $db = new Database(); $db->query(\"DELETE FROM cart .....\");}<\/pre> Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory.<\/p> Use the singleton pattern for special cases like database connection.<\/p> 26. Avoid direct SQL query , abstract it $query = \"INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')\";$db->query($query); \/\/call to mysqli_query()<\/pre> The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like:<\/p> All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord<\/p> It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries.<\/p> A very simple example of an activerecord insert function can be like this :<\/p> function insert_record($table_name , $data){ foreach($data as $key => $value) {\t\/\/mysqli_real_escape_string $data[$key] = $db->mres($value); }\t\t $fields = implode(',' , array_keys($data)); $values = \"'\" . implode(\"','\" , array_values($data)) . \"'\"; \/\/Final query\t $query = \"INSERT INTO {$table}($fields) VALUES($values)\";\t\t return $db->query($query);}\/\/data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);\/\/perform the INSERT queryinsert_record('users' , $data);<\/pre> The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse).<\/p> This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise.<\/p> 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again.<\/p> Benefits :<\/p> Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue.<\/p> Storing session in database makes many other things easier like:<\/p> Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines\/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example :<\/p> <\/head> <\/body><\/html><\/pre> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories.<\/p> Lets take an example<\/p> www.domain.com\/store\/home.php www.domain.com\/store\/products\/ipad.php<\/p> In home.php the following can be written :<\/p> Home<\/a>Ipad<\/a><\/pre> But in ipad.php the links have to be like this :<\/p> Home<\/a>Ipad<\/a><\/pre> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag.<\/p> <\/head>Home<\/a>Ipad<\/a><\/body><\/html><\/pre> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products\/ipad.php<\/p> 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing.<\/p> ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT);<\/pre> On production , the display should be disabled.<\/p> ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark.<\/p> After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set.<\/p> ini_set('log_errors' , '1');ini_set('error_log' , '\/path\/to\/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> Note :<\/p> 1. The path '\/path\/to\/errors.txt' should be writable by the web server for errors to be logged there.<\/p> 2. A separate error file is specified , otherwise all logs would go inside the apache\/web server error log and get mixed up with other apache errors.<\/p> 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver).<\/p> 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like \/var\/log dont have to searched.<\/p> 5. Dont set error_reporting to 0. It will not log anything then.<\/p> Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file.<\/p> Set 'display_errors=On' in php.ini on development machine<\/p> On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page.<\/p> Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work.<\/p> Set 'display_errors=Off' in php.ini on production machine<\/p> Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away.<\/p> 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results.<\/p> On a 64 bit machine you can see such output.<\/p> $ php -aInteractive shellphp > echo strtotime(\"0000-00-00 00:00:00\");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600<\/pre> But on a 32 bit machine all of them would give bool(false). Check here for more.<\/p> What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines.<\/p> 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this :<\/p> set_time_limit(30);\/\/Rest of the code<\/pre> It may not always work. Any execution that happens outside the script via system calls\/os functions like socket operations, database operations etc. will not be under control of set_time_limit.<\/p> So if a database operation takes lot of time or \"hangs\" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time.<\/p> 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it.<\/p> A better solution :<\/p> \/**\tMethod to execute a command in the terminal\tUses :\t1. system\t2. passthru\t3. exec\t4. shell_exec*\/function terminal($command){\t\/\/system\tif(function_exists('system'))\t{\t\tob_start();\t\tsystem($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/passthru\telse if(function_exists('passthru'))\t{\t\tob_start();\t\tpassthru($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/exec\telse if(function_exists('exec'))\t{\t\texec($command , $output , $return_var);\t\t$output = implode(\"\\n\" , $output);\t}\t\/\/shell_exec\telse if(function_exists('shell_exec'))\t{\t\t$output = shell_exec($command) ;\t}\telse\t{\t\t$output = 'Command execution not possible on this system';\t\t$return_var = 1;\t}\treturn array('output' => $output , 'status' => $return_var);}terminal('ls');<\/pre> The above function will execute the shell command using whichever function is available , keeping your code consistent.<\/p> 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user.<\/p> 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise.<\/p> Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind.<\/p> 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily.<\/p> Few popular libraries are :<\/p> mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference.<\/p> 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code.<\/p> Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community.<\/p> They contain user feedback, expert advice and useful code snippets. So check them out.<\/p> 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!!<\/p> 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc.<\/p> The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more<\/p> 1. Codeigniter 2. WordPress 3. Joomla CMS<\/p> 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment.<\/p> Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster.<\/p> Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free.<\/p> "} 社區(qū) 文章 合集 問答 學習 課程 編程詞典 工具庫 開發(fā)工具 網(wǎng)站源碼 PHP 庫 JS特效 網(wǎng)站素材 擴展插件 AI工具 休閑 游戲下載 游戲教程 簡體中文 簡體中文 English 繁體中文 日本語 ??? Melayu Fran?ais Deutsch Login singup 首頁 后端開發(fā) php教程 40+ Useful Php tips for beginners ? Part 1 40+ Useful Php tips for beginners ? Part 1 WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB Jun 23, 2016 pm 02:37 PM PHP學習指南 http://www.binarytides.com/category/php-2/tutorial/ In this series we are going to look into some useful tips and techniques that can be used to improve and optimise your php code. Note that these php tips are meant for beginners and not those who are already using mvc frameworks etc. The Techniques 1. Do not use relative paths , instead define a ROOT path Its quite common to see such lines : require_once('http://www.cnblogs.com/lib/some_class.php'); This approach has many drawbacks : It first searches for directories specified in the include paths of php , then looks from the current directory. So many directories are checked. When a script is included by another script in a different directory , its base directory changes to that of the including script. Another issue , is that when a script is being run from cron , it may not have its parent directory as the working directory. So its a good idea to have absolute paths : define('ROOT' , '/var/www/project/');require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code Now this is an absolute path and will always stay constant. But we can improve this further. The directory /var/www/project can change , so do we change it everytime ? No instead we make it portable using magic constants like __FILE__ . Take a closer look : //suppose your script is /var/www/project/index.php//Then __FILE__ will always have that full path.define('ROOT' , pathinfo(__FILE__, PATHINFO_DIRNAME));require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code So now even if you shift your project to a different directory , like moving it to an online server , the same code will run without any changes. 2. Dont use require , include , require_once or include_once Your script could be including various files on top , like class libraries , files for utility and helper functions etc like this : require_once('lib/Database.php');require_once('lib/Mail.php');require_once('helpers/utitlity_functions.php'); This is rather primitive. The code needs to be more flexible. Write up helper functions to include things more easily. Lets take an example : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); require_once( $path ); }load_class('Database');load_class('Mail'); See any difference ? You must. It does not need any more explanation. You can improve this further if you wish to like this : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); if(file_exists($path)) { require_once( $path ); }} There are a lot of things that can be done with this : Search multiple directories for the same class file. Change the directory containing class files easily , without breaking the code anywhere. Use similar functions for loading files that contain helper functions , html content etc. 3. Maintain debugging environment in your application During development we echo database queries , dump variables which are creating problems , and then once the problem is solved , we comment them or erase them. But its a good idea to let everything stay and help in the long run On your development machine you can do this : define('ENVIRONMENT' , 'development');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } And on the server you can do this : define('ENVIRONMENT' , 'production');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } 4. Propagate status messages via session Status messages are those messages that are generated after doing a task. <?phpif($wrong_username || $wrong_password){ $msg = 'Invalid username or password';}?><html><body><?php echo $msg; ?><form>...</form></body></html> Code like that is common. Using variables to show status messages has limitations. They cannot be send via redirects (unless you propagate them as GET variables to the next script , which is very silly). In large scripts there might be multiple messages etc. Best way is to use session to propagate them (even if on same page). For this there has to be a session_start on every page. function set_flash($msg){ $_SESSION['message'] = $msg;}function get_flash(){ $msg = $_SESSION['message']; unset($_SESSION['message']); return $msg;} and in your script : <?phpif($wrong_username || $wrong_password){ set_flash('Invalid username or password');}?><html><body>Status is : <?php echo get_flash(); ?><form>...</form></body></html> 5. Make your functions flexible function add_to_cart($item_id , $qty){ $_SESSION['cart'][$item_id] = $qty;}add_to_cart( 'IPHONE3' , 2 ); When adding a single item you use the above function. When adding multiple items , will you create another function ? NO. Just make the function flexible enough to take different kinds of parameters. Have a closer look : function add_to_cart($item_id , $qty){ if(!is_array($item_id)) { $_SESSION['cart'][$item_id] = $qty; } else { foreach($item_id as $i_id => $qty) { $_SESSION['cart'][$i_id] = $qty; } }}add_to_cart( 'IPHONE3' , 2 );add_to_cart( array('IPHONE3' => 2 , 'IPAD' => 5) ); So now the same function can accept different kinds of output. The above can be applied in lots of places to make your code more agile. 6. Omit the closing php tag if it is the last thing in a script I wonder why this tip is omitted from so many blog posts on php tips. <?phpecho "Hello";//Now dont close this tag This will save you lots of problem. Lets take an example : A class file super_class.php <?phpclass super_class{ function super_function() { //super code }}?>//super extra character after the closing tag Now index.php require_once('super_class.php');//echo an image or pdf , or set the cookies or session data And you will get Headers already send error. Why ? because the "super extra character" has been echoed , and all headers went along with that. Now you start debugging. You may have to waste many hours to find the super extra space. Hence make it a habit to omit the closing tag : <?phpclass super_class{ function super_function() { //super code }}//No closing tag Thats better. 7. Collect all output at one place , and output at one shot to the browser This is called output buffering. Lets say you have been echoing content from different functions like this : function print_header(){ echo "<div id='header'>Site Log and Login links</div>";}function print_footer(){ echo "<div id='footer'>Site was made by me</div>";}print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}print_footer(); Instead of doing like that , first collect all output in one place. You can either store it inside variables in the functions or use ob_start and ob_end_clean. So now it should look like function print_header(){ $o = "<div id='header'>Site Log and Login links</div>"; return $o;}function print_footer(){ $o = "<div id='footer'>Site was made by me</div>"; return $o;}echo print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}echo print_footer(); So why should you do output buffering : You can change the output just before sending it to browser if you need to. Think about doing some str_replaces , or may be preg_replaces or may be adding some extra html at the end like profiler/debugger output Its a bad idea to send output to browser and do php processing at the same time. Have you ever seen a website where there is a Fatal error in the sidebar or in a box in the middle of the screen. You know why that happens ? Because processing and output are being mixed. 8. Send correct mime types via header when outputting non-html content Lets echo some xml. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataecho $xml; Works fine. But it needs some improvement. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataheader("content-type: text/xml");echo $xml; Note that header line. That line tells the browser that the content is xml content. So the browser can handle it correctly. Many javascript libraries also rely on header information. Similarly for javascript , css , jpg image , png image : Javascript header("content-type: application/x-javascript");echo "var a = 10"; CSS header("content-type: text/css");echo "#div id { background:#000; }"; 9. Set the correct character encoding for a mysql connection Ever faced a problem that unicode/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation. $host = 'localhost';$username = 'root';$password = 'super_secret';//Attempt to connect to database$c = mysqli_connect($host , $username, $password); //Check connection validityif (!$c) { die ("Could not connect to the database host: <br />". mysqli_connect_error());} //Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){ die('mysqli_set_charset() failed');} Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application. Otherwise what will happen ? You will see lots of boxes and ???????? in non english text. 10. Use htmlentities with the correct characterset option Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc. $value = htmlentities($this->value , ENT_QUOTES , 'UTF-8'); Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual. 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php. Use apache mod_gzip/mod_deflate to compress content via the .htaccess file. 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php. $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= "'$image' ,";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;//Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,]; Be smart. use json_encode : $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;//Output is : var images = ["myself.png","friends.png","colleagues.png"] Isn't that neat ? 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of "debugging" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on. Make sure that your application is as intelligent as possible and reports the most important information in the shortest time. $contents = "All the content";$file_path = "/var/www/project/content.txt";file_put_contents($file_path , $contents); That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons : Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file. $contents = "All the content";$dir = '/var/www/project';$file_path = $dir . "/content.txt";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die("Directory $dir is not writable, or does not exist. Please check");} By doing this you get the accurate information that where is a file write failing and why 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are "accessible" outside. Otherwise for example the files may be created by "php" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on. // Read and write for owner, read for everybody elsechmod("/somedir/somefile", 0644);// Everything for owner, read and execute for otherschmod("/somedir/somefile", 0755); 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ //Save the things} The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this : if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ //Save the things} Now you are free from the value the submit button 16. Use static variables in function where they always have same value //Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} Instead use static variables as : //Delay for some timefunction delay(){ static $sync_delay = null; if($sync_delay == null) { $sync_delay = get_option('sync_delay'); } echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} 17. Don't use the $_SESSION variable directly Some simple examples are : $_SESSION['username'] = $username;$username = $_SESSION['username']; But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain. Hence use application specific keys with wrapper functions : define('APP_ID' , 'abc_corp_ecommerce');//Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}//Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;} 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like : function utility_a(){ //This function does a utility thing like string processing}function utility_b(){ //This function does nother utility thing like database processing}function utility_c(){ //This function is ...} And you use the function throughout your application freely. You may want to wrap them into a class as static functions : class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}//and call them as $a = Utility::utility_a();$b = Utility::utility_b(); One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else. 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++; Its absolutely a WASTE. Write if($a == true){ $a_count++;} Dont try to make your code shorter by eating up syntax. Rather make your logic shorter. Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this : foreach($arr as $c => $v){ $arr[$c] = trim($v);} But it can more cleaner with array_map : $arr = array_map('trim' , $arr); This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more. 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters. The php filter extension provides simple way to validate or check values as being a valid 'something'. 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate']; Its a good habit. 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded : $db_records_in_array_format; //This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; //2MB moresome_function($cc); //Another 2MB ? The above thing is common when importing a csv file or exporting table to a csv file Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays. Consider passing them by reference , or storing them in a class variable : $a = get_large_array();pass_to_function(&$a); by doing this the same variable (and not its copy) will be available to the function. Check documentation class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { //process $this->a }} unset them as soon as possible , so that memory is freed and rest of the script can relax. Here is a simple demonstration of how assign by reference can save memory in some cases <?phpini_set('display_errors' , true);error_reporting(E_ALL);$a = array();for($i = 0; $i < 100000 ; $i++){ $a[$i] = 'A'.$i;}echo 'Memory usage in MB : '. memory_get_usage() / 1000000 . '<br />';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() / 1000000 . '<br />';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() / 1000000 . '<br />';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() / 1000000 . '<br />'; The output on a typical php 5.4 machine is : Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more. 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this : function add_to_cart(){ $db = new Database(); $db->query("INSERT INTO cart .....");}function empty_cart(){ $db = new Database(); $db->query("DELETE FROM cart .....");} Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory. Use the singleton pattern for special cases like database connection. 26. Avoid direct SQL query , abstract it $query = "INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')";$db->query($query); //call to mysqli_query() The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like: All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries. A very simple example of an activerecord insert function can be like this : function insert_record($table_name , $data){ foreach($data as $key => $value) { //mysqli_real_escape_string $data[$key] = $db->mres($value); } $fields = implode(',' , array_keys($data)); $values = "'" . implode("','" , array_values($data)) . "'"; //Final query $query = "INSERT INTO {$table}($fields) VALUES($values)"; return $db->query($query);}//data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);//perform the INSERT queryinsert_record('users' , $data); The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse). This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise. 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again. Benefits : Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue. Storing session in database makes many other things easier like: Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example : <head> <base href="http://www.domain.com/store/"></head><body> <img src="/static/imghw/default1.png" data-src="happy.jpg" class="lazy" / alt="40+ Useful Php tips for beginners ? Part 1" ></body></html> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories. Lets take an example www.domain.com/store/home.php www.domain.com/store/products/ipad.php In home.php the following can be written : <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> But in ipad.php the links have to be like this : <a href="../home.php">Home</a><a href="ipad.php">Ipad</a> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag. <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products/ipad.php 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing. ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT); On production , the display should be disabled. ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark. After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set. ini_set('log_errors' , '1');ini_set('error_log' , '/path/to/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); Note : 1. The path '/path/to/errors.txt' should be writable by the web server for errors to be logged there. 2. A separate error file is specified , otherwise all logs would go inside the apache/web server error log and get mixed up with other apache errors. 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver). 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like /var/log dont have to searched. 5. Dont set error_reporting to 0. It will not log anything then. Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file. Set 'display_errors=On' in php.ini on development machine On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page. Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work. Set 'display_errors=Off' in php.ini on production machine Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away. 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results. On a 64 bit machine you can see such output. $ php -aInteractive shellphp > echo strtotime("0000-00-00 00:00:00");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600 But on a 32 bit machine all of them would give bool(false). Check here for more. What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines. 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this : set_time_limit(30);//Rest of the code It may not always work. Any execution that happens outside the script via system calls/os functions like socket operations, database operations etc. will not be under control of set_time_limit. So if a database operation takes lot of time or "hangs" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time. 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it. A better solution : /** Method to execute a command in the terminal Uses : 1. system 2. passthru 3. exec 4. shell_exec*/function terminal($command){ //system if(function_exists('system')) { ob_start(); system($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //passthru else if(function_exists('passthru')) { ob_start(); passthru($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //exec else if(function_exists('exec')) { exec($command , $output , $return_var); $output = implode("\n" , $output); } //shell_exec else if(function_exists('shell_exec')) { $output = shell_exec($command) ; } else { $output = 'Command execution not possible on this system'; $return_var = 1; } return array('output' => $output , 'status' => $return_var);}terminal('ls'); The above function will execute the shell command using whichever function is available , keeping your code consistent. 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user. 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise. Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind. 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily. Few popular libraries are : mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference. 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code. Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community. They contain user feedback, expert advice and useful code snippets. So check them out. 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!! 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc. The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more 1. Codeigniter 2. WordPress 3. Joomla CMS 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment. Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster. Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free. 本站聲明 本文內(nèi)容由網(wǎng)友自發(fā)貢獻,版權(quán)歸原作者所有,本站不承擔相應(yīng)法律責任。如您發(fā)現(xiàn)有涉嫌抄襲侵權(quán)的內(nèi)容,請聯(lián)系admin@php.cn 熱AI工具 Undress AI Tool 免費脫衣服圖片 Undresser.AI Undress 人工智能驅(qū)動的應(yīng)用程序,用于創(chuàng)建逼真的裸體照片 AI Clothes Remover 用于從照片中去除衣服的在線人工智能工具。 Clothoff.io AI脫衣機 Video Face Swap 使用我們完全免費的人工智能換臉工具輕松在任何視頻中換臉! 顯示更多 熱門文章 指南:恒星刀片保存文件位置/保存文件丟失/不保存 4 周前 By DDD Oguri Cap Build Guide |漂亮的德比志 2 周前 By Jack chen Agnes Tachyon Build Guide |漂亮的德比志 1 周前 By Jack chen 沙丘:覺醒 - 高級行星學家Quest演練 4 周前 By Jack chen 約會一切:德克和哈珀關(guān)系指南 4 周前 By Jack chen 顯示更多 熱工具 記事本++7.3.1 好用且免費的代碼編輯器 SublimeText3漢化版 中文版,非常好用 禪工作室 13.0.1 功能強大的PHP集成開發(fā)環(huán)境 Dreamweaver CS6 視覺化網(wǎng)頁開發(fā)工具 SublimeText3 Mac版 神級代碼編輯軟件(SublimeText3) 顯示更多 熱門話題 gmail郵箱登陸入口在哪里 8638 17 Java教程 1783 16 CakePHP 教程 1728 56 Laravel 教程 1578 28 PHP教程 1442 31 顯示更多 Related knowledge 如何在PHP中實施身份驗證和授權(quán)? Jun 20, 2025 am 01:03 AM tosecurelyhandleauthenticationandationallizationInphp,lofterTheSesteps:1.AlwaysHashPasswordSwithPassword_hash()andverifyusingspasspassword_verify(),usepreparedStatatementStopreventsqlineptions,andStoreSeruserDatain usseruserDatain $ _sessiveferterlogin.2.implementrole-2.imaccessccsccccccccccccccccccccccccc. 如何在PHP中安全地處理文件上傳? Jun 19, 2025 am 01:05 AM 要安全處理PHP中的文件上傳,核心在于驗證文件類型、重命名文件并限制權(quán)限。1.使用finfo_file()檢查真實MIME類型,僅允許特定類型如image/jpeg;2.用uniqid()生成隨機文件名,存儲至非Web根目錄;3.通過php.ini和HTML表單限制文件大小,設(shè)置目錄權(quán)限為0755;4.使用ClamAV掃描惡意軟件,增強安全性。這些步驟有效防止安全漏洞,確保文件上傳過程安全可靠。 PHP中==(松散比較)和===(嚴格的比較)之間有什么區(qū)別? Jun 19, 2025 am 01:07 AM 在PHP中,==與===的主要區(qū)別在于類型檢查的嚴格程度。==在比較前會進行類型轉(zhuǎn)換,例如5=="5"返回true,而===要求值和類型都相同才會返回true,例如5==="5"返回false。使用場景上,===更安全應(yīng)優(yōu)先使用,==僅在需要類型轉(zhuǎn)換時使用。 如何在PHP( - , *, /,%)中執(zhí)行算術(shù)操作? Jun 19, 2025 pm 05:13 PM PHP中使用基本數(shù)學運算的方法如下:1.加法用 號,支持整數(shù)和浮點數(shù),也可用于變量,字符串數(shù)字會自動轉(zhuǎn)換但不推薦依賴;2.減法用-號,變量同理,類型轉(zhuǎn)換同樣適用;3.乘法用*號,適用于數(shù)字及類似字符串;4.除法用/號,需避免除以零,并注意結(jié)果可能是浮點數(shù);5.取模用%號,可用于判斷奇偶數(shù),處理負數(shù)時余數(shù)符號與被除數(shù)一致。正確使用這些運算符的關(guān)鍵在于確保數(shù)據(jù)類型清晰并處理好邊界情況。 如何與PHP的NOSQL數(shù)據(jù)庫(例如MongoDB,Redis)進行交互? Jun 19, 2025 am 01:07 AM 是的,PHP可以通過特定擴展或庫與MongoDB和Redis等NoSQL數(shù)據(jù)庫交互。首先,使用MongoDBPHP驅(qū)動(通過PECL或Composer安裝)創(chuàng)建客戶端實例并操作數(shù)據(jù)庫及集合,支持插入、查詢、聚合等操作;其次,使用Predis庫或phpredis擴展連接Redis,執(zhí)行鍵值設(shè)置與獲取,推薦phpredis用于高性能場景,Predis則便于快速部署;兩者均適用于生產(chǎn)環(huán)境且文檔完善。 我如何了解最新的PHP開發(fā)和最佳實踐? Jun 23, 2025 am 12:56 AM TostaycurrentwithPHPdevelopmentsandbestpractices,followkeynewssourceslikePHP.netandPHPWeekly,engagewithcommunitiesonforumsandconferences,keeptoolingupdatedandgraduallyadoptnewfeatures,andreadorcontributetoopensourceprojects.First,followreliablesource 什么是PHP,為什么它用于Web開發(fā)? Jun 23, 2025 am 12:55 AM PHPbecamepopularforwebdevelopmentduetoitseaseoflearning,seamlessintegrationwithHTML,widespreadhostingsupport,andalargeecosystemincludingframeworkslikeLaravelandCMSplatformslikeWordPress.Itexcelsinhandlingformsubmissions,managingusersessions,interacti 如何設(shè)置PHP時區(qū)? Jun 25, 2025 am 01:00 AM tosetTherightTimeZoneInphp,restate_default_timezone_set()functionAtthestArtofyourscriptWithavalIdidentIdentifiersuchas'america/new_york'.1.usedate_default_default_timezone_set_set() See all articles
0<\/code><\/response>\";\/\/Send xml dataheader(\"content-type: text\/xml\");echo $xml;<\/pre> Note that header line. That line tells the browser that the content is xml content. So the browser can handle it correctly. Many javascript libraries also rely on header information.<\/p> Similarly for javascript , css , jpg image , png image :<\/p> Javascript<\/p> header(\"content-type: application\/x-javascript\");echo \"var a = 10\";<\/pre> CSS<\/p> header(\"content-type: text\/css\");echo \"#div id { background:#000; }\";<\/pre> 9. Set the correct character encoding for a mysql connection Ever faced a problem that unicode\/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation.<\/p> $host = 'localhost';$username = 'root';$password = 'super_secret';\/\/Attempt to connect to database$c = mysqli_connect($host , $username, $password);\t\t\/\/Check connection validityif (!$c) {\tdie (\"Could not connect to the database host: \". mysqli_connect_error());}\t\t\/\/Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){\tdie('mysqli_set_charset() failed');}<\/pre> Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application.<\/p> Otherwise what will happen ? You will see lots of boxes and ???????? in non english text.<\/p> 10. Use htmlentities with the correct characterset option Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc.<\/p> $value = htmlentities($this->value , ENT_QUOTES , 'UTF-8');<\/pre> Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual.<\/p> 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php.<\/p> Use apache mod_gzip\/mod_deflate to compress content via the .htaccess file.<\/p> 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php.<\/p> $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= \"'$image' ,\";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;\/\/Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,];<\/pre> Be smart. use json_encode :<\/p> $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;\/\/Output is : var images = [\"myself.png\",\"friends.png\",\"colleagues.png\"]<\/pre> Isn't that neat ?<\/p> 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of \"debugging\" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on.<\/p> Make sure that your application is as intelligent as possible and reports the most important information in the shortest time.<\/p> $contents = \"All the content\";$file_path = \"\/var\/www\/project\/content.txt\";file_put_contents($file_path , $contents);<\/pre> That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons :<\/p> Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file.<\/p> $contents = \"All the content\";$dir = '\/var\/www\/project';$file_path = $dir . \"\/content.txt\";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die(\"Directory $dir is not writable, or does not exist. Please check\");}<\/pre> By doing this you get the accurate information that where is a file write failing and why<\/p> 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are \"accessible\" outside. Otherwise for example the files may be created by \"php\" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on.<\/p> \/\/ Read and write for owner, read for everybody elsechmod(\"\/somedir\/somefile\", 0644);\/\/ Everything for owner, read and execute for otherschmod(\"\/somedir\/somefile\", 0755);<\/pre> 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ \/\/Save the things}<\/pre> The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this :<\/p> if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ \/\/Save the things}<\/pre> Now you are free from the value the submit button<\/p> 16. Use static variables in function where they always have same value \/\/Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); \t echo \"Delaying for $sync_delay seconds...\"; sleep($sync_delay); echo \"Done \";}<\/pre> Instead use static variables as :<\/p> \/\/Delay for some timefunction delay(){ static $sync_delay = null;\t if($sync_delay == null) {\t$sync_delay = get_option('sync_delay'); }\t echo \"Delaying for $sync_delay seconds...\"; sleep($sync_delay); echo \"Done \";}<\/pre> 17. Don't use the $_SESSION variable directly Some simple examples are :<\/p> $_SESSION['username'] = $username;$username = $_SESSION['username'];<\/pre> But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain.<\/p> Hence use application specific keys with wrapper functions :<\/p> define('APP_ID' , 'abc_corp_ecommerce');\/\/Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}\/\/Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;}<\/pre> 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like :<\/p> function utility_a(){ \/\/This function does a utility thing like string processing}function utility_b(){ \/\/This function does nother utility thing like database processing}function utility_c(){ \/\/This function is ...}<\/pre> And you use the function throughout your application freely. You may want to wrap them into a class as static functions :<\/p> class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}\/\/and call them as $a = Utility::utility_a();$b = Utility::utility_b();<\/pre> One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else.<\/p> 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++;<\/pre> Its absolutely a WASTE.<\/p> Write<\/p> if($a == true){ $a_count++;}<\/pre> Dont try to make your code shorter by eating up syntax. Rather make your logic shorter.<\/p> Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this :<\/p> foreach($arr as $c => $v){\t$arr[$c] = trim($v);}<\/pre> But it can more cleaner with array_map :<\/p> $arr = array_map('trim' , $arr);<\/pre> This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more.<\/p> 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters.<\/p> The php filter extension provides simple way to validate or check values as being a valid 'something'.<\/p> 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate'];<\/pre> Its a good habit.<\/p> 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose<\/p> 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded :<\/p> $db_records_in_array_format; \/\/This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; \/\/2MB moresome_function($cc); \/\/Another 2MB ?<\/pre> The above thing is common when importing a csv file or exporting table to a csv file<\/p> Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays.<\/p> Consider passing them by reference , or storing them in a class variable :<\/p> $a = get_large_array();pass_to_function(&$a);<\/pre> by doing this the same variable (and not its copy) will be available to the function. Check documentation<\/p> class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { \/\/process $this->a }}<\/pre> unset them as soon as possible , so that memory is freed and rest of the script can relax.<\/p> Here is a simple demonstration of how assign by reference can save memory in some cases<\/p> ';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() \/ 1000000 . '';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() \/ 1000000 . '';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() \/ 1000000 . '';<\/pre> The output on a typical php 5.4 machine is :<\/p> Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 <\/p> So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more.<\/p> 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this :<\/p> function add_to_cart(){ $db = new Database(); $db->query(\"INSERT INTO cart .....\");}function empty_cart(){ $db = new Database(); $db->query(\"DELETE FROM cart .....\");}<\/pre> Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory.<\/p> Use the singleton pattern for special cases like database connection.<\/p> 26. Avoid direct SQL query , abstract it $query = \"INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')\";$db->query($query); \/\/call to mysqli_query()<\/pre> The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like:<\/p> All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord<\/p> It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries.<\/p> A very simple example of an activerecord insert function can be like this :<\/p> function insert_record($table_name , $data){ foreach($data as $key => $value) {\t\/\/mysqli_real_escape_string $data[$key] = $db->mres($value); }\t\t $fields = implode(',' , array_keys($data)); $values = \"'\" . implode(\"','\" , array_values($data)) . \"'\"; \/\/Final query\t $query = \"INSERT INTO {$table}($fields) VALUES($values)\";\t\t return $db->query($query);}\/\/data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);\/\/perform the INSERT queryinsert_record('users' , $data);<\/pre> The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse).<\/p> This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise.<\/p> 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again.<\/p> Benefits :<\/p> Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue.<\/p> Storing session in database makes many other things easier like:<\/p> Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines\/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example :<\/p> <\/head> <\/body><\/html><\/pre> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories.<\/p> Lets take an example<\/p> www.domain.com\/store\/home.php www.domain.com\/store\/products\/ipad.php<\/p> In home.php the following can be written :<\/p> Home<\/a>Ipad<\/a><\/pre> But in ipad.php the links have to be like this :<\/p> Home<\/a>Ipad<\/a><\/pre> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag.<\/p> <\/head>Home<\/a>Ipad<\/a><\/body><\/html><\/pre> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products\/ipad.php<\/p> 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing.<\/p> ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT);<\/pre> On production , the display should be disabled.<\/p> ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark.<\/p> After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set.<\/p> ini_set('log_errors' , '1');ini_set('error_log' , '\/path\/to\/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> Note :<\/p> 1. The path '\/path\/to\/errors.txt' should be writable by the web server for errors to be logged there.<\/p> 2. A separate error file is specified , otherwise all logs would go inside the apache\/web server error log and get mixed up with other apache errors.<\/p> 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver).<\/p> 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like \/var\/log dont have to searched.<\/p> 5. Dont set error_reporting to 0. It will not log anything then.<\/p> Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file.<\/p> Set 'display_errors=On' in php.ini on development machine<\/p> On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page.<\/p> Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work.<\/p> Set 'display_errors=Off' in php.ini on production machine<\/p> Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away.<\/p> 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results.<\/p> On a 64 bit machine you can see such output.<\/p> $ php -aInteractive shellphp > echo strtotime(\"0000-00-00 00:00:00\");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600<\/pre> But on a 32 bit machine all of them would give bool(false). Check here for more.<\/p> What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines.<\/p> 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this :<\/p> set_time_limit(30);\/\/Rest of the code<\/pre> It may not always work. Any execution that happens outside the script via system calls\/os functions like socket operations, database operations etc. will not be under control of set_time_limit.<\/p> So if a database operation takes lot of time or \"hangs\" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time.<\/p> 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it.<\/p> A better solution :<\/p> \/**\tMethod to execute a command in the terminal\tUses :\t1. system\t2. passthru\t3. exec\t4. shell_exec*\/function terminal($command){\t\/\/system\tif(function_exists('system'))\t{\t\tob_start();\t\tsystem($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/passthru\telse if(function_exists('passthru'))\t{\t\tob_start();\t\tpassthru($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/exec\telse if(function_exists('exec'))\t{\t\texec($command , $output , $return_var);\t\t$output = implode(\"\\n\" , $output);\t}\t\/\/shell_exec\telse if(function_exists('shell_exec'))\t{\t\t$output = shell_exec($command) ;\t}\telse\t{\t\t$output = 'Command execution not possible on this system';\t\t$return_var = 1;\t}\treturn array('output' => $output , 'status' => $return_var);}terminal('ls');<\/pre> The above function will execute the shell command using whichever function is available , keeping your code consistent.<\/p> 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user.<\/p> 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise.<\/p> Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind.<\/p> 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily.<\/p> Few popular libraries are :<\/p> mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference.<\/p> 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code.<\/p> Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community.<\/p> They contain user feedback, expert advice and useful code snippets. So check them out.<\/p> 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!!<\/p> 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc.<\/p> The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more<\/p> 1. Codeigniter 2. WordPress 3. Joomla CMS<\/p> 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment.<\/p> Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster.<\/p> Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free.<\/p> "} 社區(qū) 文章 合集 問答 學習 課程 編程詞典 工具庫 開發(fā)工具 網(wǎng)站源碼 PHP 庫 JS特效 網(wǎng)站素材 擴展插件 AI工具 休閑 游戲下載 游戲教程 簡體中文 簡體中文 English 繁體中文 日本語 ??? Melayu Fran?ais Deutsch Login singup 首頁 后端開發(fā) php教程 40+ Useful Php tips for beginners ? Part 1 40+ Useful Php tips for beginners ? Part 1 WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB Jun 23, 2016 pm 02:37 PM PHP學習指南 http://www.binarytides.com/category/php-2/tutorial/ In this series we are going to look into some useful tips and techniques that can be used to improve and optimise your php code. Note that these php tips are meant for beginners and not those who are already using mvc frameworks etc. The Techniques 1. Do not use relative paths , instead define a ROOT path Its quite common to see such lines : require_once('http://www.cnblogs.com/lib/some_class.php'); This approach has many drawbacks : It first searches for directories specified in the include paths of php , then looks from the current directory. So many directories are checked. When a script is included by another script in a different directory , its base directory changes to that of the including script. Another issue , is that when a script is being run from cron , it may not have its parent directory as the working directory. So its a good idea to have absolute paths : define('ROOT' , '/var/www/project/');require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code Now this is an absolute path and will always stay constant. But we can improve this further. The directory /var/www/project can change , so do we change it everytime ? No instead we make it portable using magic constants like __FILE__ . Take a closer look : //suppose your script is /var/www/project/index.php//Then __FILE__ will always have that full path.define('ROOT' , pathinfo(__FILE__, PATHINFO_DIRNAME));require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code So now even if you shift your project to a different directory , like moving it to an online server , the same code will run without any changes. 2. Dont use require , include , require_once or include_once Your script could be including various files on top , like class libraries , files for utility and helper functions etc like this : require_once('lib/Database.php');require_once('lib/Mail.php');require_once('helpers/utitlity_functions.php'); This is rather primitive. The code needs to be more flexible. Write up helper functions to include things more easily. Lets take an example : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); require_once( $path ); }load_class('Database');load_class('Mail'); See any difference ? You must. It does not need any more explanation. You can improve this further if you wish to like this : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); if(file_exists($path)) { require_once( $path ); }} There are a lot of things that can be done with this : Search multiple directories for the same class file. Change the directory containing class files easily , without breaking the code anywhere. Use similar functions for loading files that contain helper functions , html content etc. 3. Maintain debugging environment in your application During development we echo database queries , dump variables which are creating problems , and then once the problem is solved , we comment them or erase them. But its a good idea to let everything stay and help in the long run On your development machine you can do this : define('ENVIRONMENT' , 'development');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } And on the server you can do this : define('ENVIRONMENT' , 'production');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } 4. Propagate status messages via session Status messages are those messages that are generated after doing a task. <?phpif($wrong_username || $wrong_password){ $msg = 'Invalid username or password';}?><html><body><?php echo $msg; ?><form>...</form></body></html> Code like that is common. Using variables to show status messages has limitations. They cannot be send via redirects (unless you propagate them as GET variables to the next script , which is very silly). In large scripts there might be multiple messages etc. Best way is to use session to propagate them (even if on same page). For this there has to be a session_start on every page. function set_flash($msg){ $_SESSION['message'] = $msg;}function get_flash(){ $msg = $_SESSION['message']; unset($_SESSION['message']); return $msg;} and in your script : <?phpif($wrong_username || $wrong_password){ set_flash('Invalid username or password');}?><html><body>Status is : <?php echo get_flash(); ?><form>...</form></body></html> 5. Make your functions flexible function add_to_cart($item_id , $qty){ $_SESSION['cart'][$item_id] = $qty;}add_to_cart( 'IPHONE3' , 2 ); When adding a single item you use the above function. When adding multiple items , will you create another function ? NO. Just make the function flexible enough to take different kinds of parameters. Have a closer look : function add_to_cart($item_id , $qty){ if(!is_array($item_id)) { $_SESSION['cart'][$item_id] = $qty; } else { foreach($item_id as $i_id => $qty) { $_SESSION['cart'][$i_id] = $qty; } }}add_to_cart( 'IPHONE3' , 2 );add_to_cart( array('IPHONE3' => 2 , 'IPAD' => 5) ); So now the same function can accept different kinds of output. The above can be applied in lots of places to make your code more agile. 6. Omit the closing php tag if it is the last thing in a script I wonder why this tip is omitted from so many blog posts on php tips. <?phpecho "Hello";//Now dont close this tag This will save you lots of problem. Lets take an example : A class file super_class.php <?phpclass super_class{ function super_function() { //super code }}?>//super extra character after the closing tag Now index.php require_once('super_class.php');//echo an image or pdf , or set the cookies or session data And you will get Headers already send error. Why ? because the "super extra character" has been echoed , and all headers went along with that. Now you start debugging. You may have to waste many hours to find the super extra space. Hence make it a habit to omit the closing tag : <?phpclass super_class{ function super_function() { //super code }}//No closing tag Thats better. 7. Collect all output at one place , and output at one shot to the browser This is called output buffering. Lets say you have been echoing content from different functions like this : function print_header(){ echo "<div id='header'>Site Log and Login links</div>";}function print_footer(){ echo "<div id='footer'>Site was made by me</div>";}print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}print_footer(); Instead of doing like that , first collect all output in one place. You can either store it inside variables in the functions or use ob_start and ob_end_clean. So now it should look like function print_header(){ $o = "<div id='header'>Site Log and Login links</div>"; return $o;}function print_footer(){ $o = "<div id='footer'>Site was made by me</div>"; return $o;}echo print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}echo print_footer(); So why should you do output buffering : You can change the output just before sending it to browser if you need to. Think about doing some str_replaces , or may be preg_replaces or may be adding some extra html at the end like profiler/debugger output Its a bad idea to send output to browser and do php processing at the same time. Have you ever seen a website where there is a Fatal error in the sidebar or in a box in the middle of the screen. You know why that happens ? Because processing and output are being mixed. 8. Send correct mime types via header when outputting non-html content Lets echo some xml. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataecho $xml; Works fine. But it needs some improvement. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataheader("content-type: text/xml");echo $xml; Note that header line. That line tells the browser that the content is xml content. So the browser can handle it correctly. Many javascript libraries also rely on header information. Similarly for javascript , css , jpg image , png image : Javascript header("content-type: application/x-javascript");echo "var a = 10"; CSS header("content-type: text/css");echo "#div id { background:#000; }"; 9. Set the correct character encoding for a mysql connection Ever faced a problem that unicode/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation. $host = 'localhost';$username = 'root';$password = 'super_secret';//Attempt to connect to database$c = mysqli_connect($host , $username, $password); //Check connection validityif (!$c) { die ("Could not connect to the database host: <br />". mysqli_connect_error());} //Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){ die('mysqli_set_charset() failed');} Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application. Otherwise what will happen ? You will see lots of boxes and ???????? in non english text. 10. Use htmlentities with the correct characterset option Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc. $value = htmlentities($this->value , ENT_QUOTES , 'UTF-8'); Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual. 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php. Use apache mod_gzip/mod_deflate to compress content via the .htaccess file. 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php. $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= "'$image' ,";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;//Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,]; Be smart. use json_encode : $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;//Output is : var images = ["myself.png","friends.png","colleagues.png"] Isn't that neat ? 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of "debugging" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on. Make sure that your application is as intelligent as possible and reports the most important information in the shortest time. $contents = "All the content";$file_path = "/var/www/project/content.txt";file_put_contents($file_path , $contents); That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons : Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file. $contents = "All the content";$dir = '/var/www/project';$file_path = $dir . "/content.txt";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die("Directory $dir is not writable, or does not exist. Please check");} By doing this you get the accurate information that where is a file write failing and why 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are "accessible" outside. Otherwise for example the files may be created by "php" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on. // Read and write for owner, read for everybody elsechmod("/somedir/somefile", 0644);// Everything for owner, read and execute for otherschmod("/somedir/somefile", 0755); 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ //Save the things} The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this : if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ //Save the things} Now you are free from the value the submit button 16. Use static variables in function where they always have same value //Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} Instead use static variables as : //Delay for some timefunction delay(){ static $sync_delay = null; if($sync_delay == null) { $sync_delay = get_option('sync_delay'); } echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} 17. Don't use the $_SESSION variable directly Some simple examples are : $_SESSION['username'] = $username;$username = $_SESSION['username']; But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain. Hence use application specific keys with wrapper functions : define('APP_ID' , 'abc_corp_ecommerce');//Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}//Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;} 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like : function utility_a(){ //This function does a utility thing like string processing}function utility_b(){ //This function does nother utility thing like database processing}function utility_c(){ //This function is ...} And you use the function throughout your application freely. You may want to wrap them into a class as static functions : class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}//and call them as $a = Utility::utility_a();$b = Utility::utility_b(); One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else. 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++; Its absolutely a WASTE. Write if($a == true){ $a_count++;} Dont try to make your code shorter by eating up syntax. Rather make your logic shorter. Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this : foreach($arr as $c => $v){ $arr[$c] = trim($v);} But it can more cleaner with array_map : $arr = array_map('trim' , $arr); This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more. 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters. The php filter extension provides simple way to validate or check values as being a valid 'something'. 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate']; Its a good habit. 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded : $db_records_in_array_format; //This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; //2MB moresome_function($cc); //Another 2MB ? The above thing is common when importing a csv file or exporting table to a csv file Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays. Consider passing them by reference , or storing them in a class variable : $a = get_large_array();pass_to_function(&$a); by doing this the same variable (and not its copy) will be available to the function. Check documentation class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { //process $this->a }} unset them as soon as possible , so that memory is freed and rest of the script can relax. Here is a simple demonstration of how assign by reference can save memory in some cases <?phpini_set('display_errors' , true);error_reporting(E_ALL);$a = array();for($i = 0; $i < 100000 ; $i++){ $a[$i] = 'A'.$i;}echo 'Memory usage in MB : '. memory_get_usage() / 1000000 . '<br />';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() / 1000000 . '<br />';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() / 1000000 . '<br />';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() / 1000000 . '<br />'; The output on a typical php 5.4 machine is : Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more. 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this : function add_to_cart(){ $db = new Database(); $db->query("INSERT INTO cart .....");}function empty_cart(){ $db = new Database(); $db->query("DELETE FROM cart .....");} Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory. Use the singleton pattern for special cases like database connection. 26. Avoid direct SQL query , abstract it $query = "INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')";$db->query($query); //call to mysqli_query() The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like: All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries. A very simple example of an activerecord insert function can be like this : function insert_record($table_name , $data){ foreach($data as $key => $value) { //mysqli_real_escape_string $data[$key] = $db->mres($value); } $fields = implode(',' , array_keys($data)); $values = "'" . implode("','" , array_values($data)) . "'"; //Final query $query = "INSERT INTO {$table}($fields) VALUES($values)"; return $db->query($query);}//data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);//perform the INSERT queryinsert_record('users' , $data); The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse). This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise. 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again. Benefits : Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue. Storing session in database makes many other things easier like: Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example : <head> <base href="http://www.domain.com/store/"></head><body> <img src="/static/imghw/default1.png" data-src="happy.jpg" class="lazy" / alt="40+ Useful Php tips for beginners ? Part 1" ></body></html> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories. Lets take an example www.domain.com/store/home.php www.domain.com/store/products/ipad.php In home.php the following can be written : <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> But in ipad.php the links have to be like this : <a href="../home.php">Home</a><a href="ipad.php">Ipad</a> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag. <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products/ipad.php 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing. ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT); On production , the display should be disabled. ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark. After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set. ini_set('log_errors' , '1');ini_set('error_log' , '/path/to/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); Note : 1. The path '/path/to/errors.txt' should be writable by the web server for errors to be logged there. 2. A separate error file is specified , otherwise all logs would go inside the apache/web server error log and get mixed up with other apache errors. 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver). 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like /var/log dont have to searched. 5. Dont set error_reporting to 0. It will not log anything then. Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file. Set 'display_errors=On' in php.ini on development machine On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page. Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work. Set 'display_errors=Off' in php.ini on production machine Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away. 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results. On a 64 bit machine you can see such output. $ php -aInteractive shellphp > echo strtotime("0000-00-00 00:00:00");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600 But on a 32 bit machine all of them would give bool(false). Check here for more. What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines. 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this : set_time_limit(30);//Rest of the code It may not always work. Any execution that happens outside the script via system calls/os functions like socket operations, database operations etc. will not be under control of set_time_limit. So if a database operation takes lot of time or "hangs" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time. 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it. A better solution : /** Method to execute a command in the terminal Uses : 1. system 2. passthru 3. exec 4. shell_exec*/function terminal($command){ //system if(function_exists('system')) { ob_start(); system($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //passthru else if(function_exists('passthru')) { ob_start(); passthru($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //exec else if(function_exists('exec')) { exec($command , $output , $return_var); $output = implode("\n" , $output); } //shell_exec else if(function_exists('shell_exec')) { $output = shell_exec($command) ; } else { $output = 'Command execution not possible on this system'; $return_var = 1; } return array('output' => $output , 'status' => $return_var);}terminal('ls'); The above function will execute the shell command using whichever function is available , keeping your code consistent. 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user. 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise. Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind. 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily. Few popular libraries are : mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference. 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code. Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community. They contain user feedback, expert advice and useful code snippets. So check them out. 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!! 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc. The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more 1. Codeigniter 2. WordPress 3. Joomla CMS 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment. Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster. Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free. 本站聲明 本文內(nèi)容由網(wǎng)友自發(fā)貢獻,版權(quán)歸原作者所有,本站不承擔相應(yīng)法律責任。如您發(fā)現(xiàn)有涉嫌抄襲侵權(quán)的內(nèi)容,請聯(lián)系admin@php.cn 熱AI工具 Undress AI Tool 免費脫衣服圖片 Undresser.AI Undress 人工智能驅(qū)動的應(yīng)用程序,用于創(chuàng)建逼真的裸體照片 AI Clothes Remover 用于從照片中去除衣服的在線人工智能工具。 Clothoff.io AI脫衣機 Video Face Swap 使用我們完全免費的人工智能換臉工具輕松在任何視頻中換臉! 顯示更多 熱門文章 指南:恒星刀片保存文件位置/保存文件丟失/不保存 4 周前 By DDD Oguri Cap Build Guide |漂亮的德比志 2 周前 By Jack chen Agnes Tachyon Build Guide |漂亮的德比志 1 周前 By Jack chen 沙丘:覺醒 - 高級行星學家Quest演練 4 周前 By Jack chen 約會一切:德克和哈珀關(guān)系指南 4 周前 By Jack chen 顯示更多 熱工具 記事本++7.3.1 好用且免費的代碼編輯器 SublimeText3漢化版 中文版,非常好用 禪工作室 13.0.1 功能強大的PHP集成開發(fā)環(huán)境 Dreamweaver CS6 視覺化網(wǎng)頁開發(fā)工具 SublimeText3 Mac版 神級代碼編輯軟件(SublimeText3) 顯示更多 熱門話題 gmail郵箱登陸入口在哪里 8638 17 Java教程 1783 16 CakePHP 教程 1728 56 Laravel 教程 1578 28 PHP教程 1442 31 顯示更多 Related knowledge 如何在PHP中實施身份驗證和授權(quán)? Jun 20, 2025 am 01:03 AM tosecurelyhandleauthenticationandationallizationInphp,lofterTheSesteps:1.AlwaysHashPasswordSwithPassword_hash()andverifyusingspasspassword_verify(),usepreparedStatatementStopreventsqlineptions,andStoreSeruserDatain usseruserDatain $ _sessiveferterlogin.2.implementrole-2.imaccessccsccccccccccccccccccccccccc. 如何在PHP中安全地處理文件上傳? Jun 19, 2025 am 01:05 AM 要安全處理PHP中的文件上傳,核心在于驗證文件類型、重命名文件并限制權(quán)限。1.使用finfo_file()檢查真實MIME類型,僅允許特定類型如image/jpeg;2.用uniqid()生成隨機文件名,存儲至非Web根目錄;3.通過php.ini和HTML表單限制文件大小,設(shè)置目錄權(quán)限為0755;4.使用ClamAV掃描惡意軟件,增強安全性。這些步驟有效防止安全漏洞,確保文件上傳過程安全可靠。 PHP中==(松散比較)和===(嚴格的比較)之間有什么區(qū)別? Jun 19, 2025 am 01:07 AM 在PHP中,==與===的主要區(qū)別在于類型檢查的嚴格程度。==在比較前會進行類型轉(zhuǎn)換,例如5=="5"返回true,而===要求值和類型都相同才會返回true,例如5==="5"返回false。使用場景上,===更安全應(yīng)優(yōu)先使用,==僅在需要類型轉(zhuǎn)換時使用。 如何在PHP( - , *, /,%)中執(zhí)行算術(shù)操作? Jun 19, 2025 pm 05:13 PM PHP中使用基本數(shù)學運算的方法如下:1.加法用 號,支持整數(shù)和浮點數(shù),也可用于變量,字符串數(shù)字會自動轉(zhuǎn)換但不推薦依賴;2.減法用-號,變量同理,類型轉(zhuǎn)換同樣適用;3.乘法用*號,適用于數(shù)字及類似字符串;4.除法用/號,需避免除以零,并注意結(jié)果可能是浮點數(shù);5.取模用%號,可用于判斷奇偶數(shù),處理負數(shù)時余數(shù)符號與被除數(shù)一致。正確使用這些運算符的關(guān)鍵在于確保數(shù)據(jù)類型清晰并處理好邊界情況。 如何與PHP的NOSQL數(shù)據(jù)庫(例如MongoDB,Redis)進行交互? Jun 19, 2025 am 01:07 AM 是的,PHP可以通過特定擴展或庫與MongoDB和Redis等NoSQL數(shù)據(jù)庫交互。首先,使用MongoDBPHP驅(qū)動(通過PECL或Composer安裝)創(chuàng)建客戶端實例并操作數(shù)據(jù)庫及集合,支持插入、查詢、聚合等操作;其次,使用Predis庫或phpredis擴展連接Redis,執(zhí)行鍵值設(shè)置與獲取,推薦phpredis用于高性能場景,Predis則便于快速部署;兩者均適用于生產(chǎn)環(huán)境且文檔完善。 我如何了解最新的PHP開發(fā)和最佳實踐? Jun 23, 2025 am 12:56 AM TostaycurrentwithPHPdevelopmentsandbestpractices,followkeynewssourceslikePHP.netandPHPWeekly,engagewithcommunitiesonforumsandconferences,keeptoolingupdatedandgraduallyadoptnewfeatures,andreadorcontributetoopensourceprojects.First,followreliablesource 什么是PHP,為什么它用于Web開發(fā)? Jun 23, 2025 am 12:55 AM PHPbecamepopularforwebdevelopmentduetoitseaseoflearning,seamlessintegrationwithHTML,widespreadhostingsupport,andalargeecosystemincludingframeworkslikeLaravelandCMSplatformslikeWordPress.Itexcelsinhandlingformsubmissions,managingusersessions,interacti 如何設(shè)置PHP時區(qū)? Jun 25, 2025 am 01:00 AM tosetTherightTimeZoneInphp,restate_default_timezone_set()functionAtthestArtofyourscriptWithavalIdidentIdentifiersuchas'america/new_york'.1.usedate_default_default_timezone_set_set() See all articles
Note that header line. That line tells the browser that the content is xml content. So the browser can handle it correctly. Many javascript libraries also rely on header information.<\/p>
Similarly for javascript , css , jpg image , png image :<\/p>
Javascript<\/p>
header(\"content-type: application\/x-javascript\");echo \"var a = 10\";<\/pre> CSS<\/p> header(\"content-type: text\/css\");echo \"#div id { background:#000; }\";<\/pre> 9. Set the correct character encoding for a mysql connection Ever faced a problem that unicode\/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation.<\/p> $host = 'localhost';$username = 'root';$password = 'super_secret';\/\/Attempt to connect to database$c = mysqli_connect($host , $username, $password);\t\t\/\/Check connection validityif (!$c) {\tdie (\"Could not connect to the database host: \". mysqli_connect_error());}\t\t\/\/Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){\tdie('mysqli_set_charset() failed');}<\/pre> Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application.<\/p> Otherwise what will happen ? You will see lots of boxes and ???????? in non english text.<\/p> 10. Use htmlentities with the correct characterset option Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc.<\/p> $value = htmlentities($this->value , ENT_QUOTES , 'UTF-8');<\/pre> Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual.<\/p> 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php.<\/p> Use apache mod_gzip\/mod_deflate to compress content via the .htaccess file.<\/p> 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php.<\/p> $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= \"'$image' ,\";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;\/\/Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,];<\/pre> Be smart. use json_encode :<\/p> $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;\/\/Output is : var images = [\"myself.png\",\"friends.png\",\"colleagues.png\"]<\/pre> Isn't that neat ?<\/p> 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of \"debugging\" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on.<\/p> Make sure that your application is as intelligent as possible and reports the most important information in the shortest time.<\/p> $contents = \"All the content\";$file_path = \"\/var\/www\/project\/content.txt\";file_put_contents($file_path , $contents);<\/pre> That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons :<\/p> Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file.<\/p> $contents = \"All the content\";$dir = '\/var\/www\/project';$file_path = $dir . \"\/content.txt\";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die(\"Directory $dir is not writable, or does not exist. Please check\");}<\/pre> By doing this you get the accurate information that where is a file write failing and why<\/p> 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are \"accessible\" outside. Otherwise for example the files may be created by \"php\" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on.<\/p> \/\/ Read and write for owner, read for everybody elsechmod(\"\/somedir\/somefile\", 0644);\/\/ Everything for owner, read and execute for otherschmod(\"\/somedir\/somefile\", 0755);<\/pre> 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ \/\/Save the things}<\/pre> The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this :<\/p> if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ \/\/Save the things}<\/pre> Now you are free from the value the submit button<\/p> 16. Use static variables in function where they always have same value \/\/Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); \t echo \"Delaying for $sync_delay seconds...\"; sleep($sync_delay); echo \"Done \";}<\/pre> Instead use static variables as :<\/p> \/\/Delay for some timefunction delay(){ static $sync_delay = null;\t if($sync_delay == null) {\t$sync_delay = get_option('sync_delay'); }\t echo \"Delaying for $sync_delay seconds...\"; sleep($sync_delay); echo \"Done \";}<\/pre> 17. Don't use the $_SESSION variable directly Some simple examples are :<\/p> $_SESSION['username'] = $username;$username = $_SESSION['username'];<\/pre> But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain.<\/p> Hence use application specific keys with wrapper functions :<\/p> define('APP_ID' , 'abc_corp_ecommerce');\/\/Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}\/\/Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;}<\/pre> 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like :<\/p> function utility_a(){ \/\/This function does a utility thing like string processing}function utility_b(){ \/\/This function does nother utility thing like database processing}function utility_c(){ \/\/This function is ...}<\/pre> And you use the function throughout your application freely. You may want to wrap them into a class as static functions :<\/p> class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}\/\/and call them as $a = Utility::utility_a();$b = Utility::utility_b();<\/pre> One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else.<\/p> 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++;<\/pre> Its absolutely a WASTE.<\/p> Write<\/p> if($a == true){ $a_count++;}<\/pre> Dont try to make your code shorter by eating up syntax. Rather make your logic shorter.<\/p> Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this :<\/p> foreach($arr as $c => $v){\t$arr[$c] = trim($v);}<\/pre> But it can more cleaner with array_map :<\/p> $arr = array_map('trim' , $arr);<\/pre> This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more.<\/p> 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters.<\/p> The php filter extension provides simple way to validate or check values as being a valid 'something'.<\/p> 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate'];<\/pre> Its a good habit.<\/p> 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose<\/p> 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded :<\/p> $db_records_in_array_format; \/\/This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; \/\/2MB moresome_function($cc); \/\/Another 2MB ?<\/pre> The above thing is common when importing a csv file or exporting table to a csv file<\/p> Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays.<\/p> Consider passing them by reference , or storing them in a class variable :<\/p> $a = get_large_array();pass_to_function(&$a);<\/pre> by doing this the same variable (and not its copy) will be available to the function. Check documentation<\/p> class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { \/\/process $this->a }}<\/pre> unset them as soon as possible , so that memory is freed and rest of the script can relax.<\/p> Here is a simple demonstration of how assign by reference can save memory in some cases<\/p> ';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() \/ 1000000 . '';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() \/ 1000000 . '';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() \/ 1000000 . '';<\/pre> The output on a typical php 5.4 machine is :<\/p> Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 <\/p> So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more.<\/p> 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this :<\/p> function add_to_cart(){ $db = new Database(); $db->query(\"INSERT INTO cart .....\");}function empty_cart(){ $db = new Database(); $db->query(\"DELETE FROM cart .....\");}<\/pre> Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory.<\/p> Use the singleton pattern for special cases like database connection.<\/p> 26. Avoid direct SQL query , abstract it $query = \"INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')\";$db->query($query); \/\/call to mysqli_query()<\/pre> The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like:<\/p> All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord<\/p> It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries.<\/p> A very simple example of an activerecord insert function can be like this :<\/p> function insert_record($table_name , $data){ foreach($data as $key => $value) {\t\/\/mysqli_real_escape_string $data[$key] = $db->mres($value); }\t\t $fields = implode(',' , array_keys($data)); $values = \"'\" . implode(\"','\" , array_values($data)) . \"'\"; \/\/Final query\t $query = \"INSERT INTO {$table}($fields) VALUES($values)\";\t\t return $db->query($query);}\/\/data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);\/\/perform the INSERT queryinsert_record('users' , $data);<\/pre> The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse).<\/p> This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise.<\/p> 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again.<\/p> Benefits :<\/p> Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue.<\/p> Storing session in database makes many other things easier like:<\/p> Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines\/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example :<\/p> <\/head> <\/body><\/html><\/pre> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories.<\/p> Lets take an example<\/p> www.domain.com\/store\/home.php www.domain.com\/store\/products\/ipad.php<\/p> In home.php the following can be written :<\/p> Home<\/a>Ipad<\/a><\/pre> But in ipad.php the links have to be like this :<\/p> Home<\/a>Ipad<\/a><\/pre> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag.<\/p> <\/head>Home<\/a>Ipad<\/a><\/body><\/html><\/pre> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products\/ipad.php<\/p> 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing.<\/p> ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT);<\/pre> On production , the display should be disabled.<\/p> ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark.<\/p> After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set.<\/p> ini_set('log_errors' , '1');ini_set('error_log' , '\/path\/to\/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> Note :<\/p> 1. The path '\/path\/to\/errors.txt' should be writable by the web server for errors to be logged there.<\/p> 2. A separate error file is specified , otherwise all logs would go inside the apache\/web server error log and get mixed up with other apache errors.<\/p> 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver).<\/p> 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like \/var\/log dont have to searched.<\/p> 5. Dont set error_reporting to 0. It will not log anything then.<\/p> Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file.<\/p> Set 'display_errors=On' in php.ini on development machine<\/p> On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page.<\/p> Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work.<\/p> Set 'display_errors=Off' in php.ini on production machine<\/p> Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away.<\/p> 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results.<\/p> On a 64 bit machine you can see such output.<\/p> $ php -aInteractive shellphp > echo strtotime(\"0000-00-00 00:00:00\");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600<\/pre> But on a 32 bit machine all of them would give bool(false). Check here for more.<\/p> What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines.<\/p> 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this :<\/p> set_time_limit(30);\/\/Rest of the code<\/pre> It may not always work. Any execution that happens outside the script via system calls\/os functions like socket operations, database operations etc. will not be under control of set_time_limit.<\/p> So if a database operation takes lot of time or \"hangs\" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time.<\/p> 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it.<\/p> A better solution :<\/p> \/**\tMethod to execute a command in the terminal\tUses :\t1. system\t2. passthru\t3. exec\t4. shell_exec*\/function terminal($command){\t\/\/system\tif(function_exists('system'))\t{\t\tob_start();\t\tsystem($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/passthru\telse if(function_exists('passthru'))\t{\t\tob_start();\t\tpassthru($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/exec\telse if(function_exists('exec'))\t{\t\texec($command , $output , $return_var);\t\t$output = implode(\"\\n\" , $output);\t}\t\/\/shell_exec\telse if(function_exists('shell_exec'))\t{\t\t$output = shell_exec($command) ;\t}\telse\t{\t\t$output = 'Command execution not possible on this system';\t\t$return_var = 1;\t}\treturn array('output' => $output , 'status' => $return_var);}terminal('ls');<\/pre> The above function will execute the shell command using whichever function is available , keeping your code consistent.<\/p> 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user.<\/p> 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise.<\/p> Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind.<\/p> 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily.<\/p> Few popular libraries are :<\/p> mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference.<\/p> 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code.<\/p> Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community.<\/p> They contain user feedback, expert advice and useful code snippets. So check them out.<\/p> 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!!<\/p> 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc.<\/p> The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more<\/p> 1. Codeigniter 2. WordPress 3. Joomla CMS<\/p> 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment.<\/p> Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster.<\/p> Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free.<\/p> "} 社區(qū) 文章 合集 問答 學習 課程 編程詞典 工具庫 開發(fā)工具 網(wǎng)站源碼 PHP 庫 JS特效 網(wǎng)站素材 擴展插件 AI工具 休閑 游戲下載 游戲教程 簡體中文 簡體中文 English 繁體中文 日本語 ??? Melayu Fran?ais Deutsch Login singup 首頁 后端開發(fā) php教程 40+ Useful Php tips for beginners ? Part 1 40+ Useful Php tips for beginners ? Part 1 WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB Jun 23, 2016 pm 02:37 PM PHP學習指南 http://www.binarytides.com/category/php-2/tutorial/ In this series we are going to look into some useful tips and techniques that can be used to improve and optimise your php code. Note that these php tips are meant for beginners and not those who are already using mvc frameworks etc. The Techniques 1. Do not use relative paths , instead define a ROOT path Its quite common to see such lines : require_once('http://www.cnblogs.com/lib/some_class.php'); This approach has many drawbacks : It first searches for directories specified in the include paths of php , then looks from the current directory. So many directories are checked. When a script is included by another script in a different directory , its base directory changes to that of the including script. Another issue , is that when a script is being run from cron , it may not have its parent directory as the working directory. So its a good idea to have absolute paths : define('ROOT' , '/var/www/project/');require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code Now this is an absolute path and will always stay constant. But we can improve this further. The directory /var/www/project can change , so do we change it everytime ? No instead we make it portable using magic constants like __FILE__ . Take a closer look : //suppose your script is /var/www/project/index.php//Then __FILE__ will always have that full path.define('ROOT' , pathinfo(__FILE__, PATHINFO_DIRNAME));require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code So now even if you shift your project to a different directory , like moving it to an online server , the same code will run without any changes. 2. Dont use require , include , require_once or include_once Your script could be including various files on top , like class libraries , files for utility and helper functions etc like this : require_once('lib/Database.php');require_once('lib/Mail.php');require_once('helpers/utitlity_functions.php'); This is rather primitive. The code needs to be more flexible. Write up helper functions to include things more easily. Lets take an example : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); require_once( $path ); }load_class('Database');load_class('Mail'); See any difference ? You must. It does not need any more explanation. You can improve this further if you wish to like this : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); if(file_exists($path)) { require_once( $path ); }} There are a lot of things that can be done with this : Search multiple directories for the same class file. Change the directory containing class files easily , without breaking the code anywhere. Use similar functions for loading files that contain helper functions , html content etc. 3. Maintain debugging environment in your application During development we echo database queries , dump variables which are creating problems , and then once the problem is solved , we comment them or erase them. But its a good idea to let everything stay and help in the long run On your development machine you can do this : define('ENVIRONMENT' , 'development');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } And on the server you can do this : define('ENVIRONMENT' , 'production');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } 4. Propagate status messages via session Status messages are those messages that are generated after doing a task. <?phpif($wrong_username || $wrong_password){ $msg = 'Invalid username or password';}?><html><body><?php echo $msg; ?><form>...</form></body></html> Code like that is common. Using variables to show status messages has limitations. They cannot be send via redirects (unless you propagate them as GET variables to the next script , which is very silly). In large scripts there might be multiple messages etc. Best way is to use session to propagate them (even if on same page). For this there has to be a session_start on every page. function set_flash($msg){ $_SESSION['message'] = $msg;}function get_flash(){ $msg = $_SESSION['message']; unset($_SESSION['message']); return $msg;} and in your script : <?phpif($wrong_username || $wrong_password){ set_flash('Invalid username or password');}?><html><body>Status is : <?php echo get_flash(); ?><form>...</form></body></html> 5. Make your functions flexible function add_to_cart($item_id , $qty){ $_SESSION['cart'][$item_id] = $qty;}add_to_cart( 'IPHONE3' , 2 ); When adding a single item you use the above function. When adding multiple items , will you create another function ? NO. Just make the function flexible enough to take different kinds of parameters. Have a closer look : function add_to_cart($item_id , $qty){ if(!is_array($item_id)) { $_SESSION['cart'][$item_id] = $qty; } else { foreach($item_id as $i_id => $qty) { $_SESSION['cart'][$i_id] = $qty; } }}add_to_cart( 'IPHONE3' , 2 );add_to_cart( array('IPHONE3' => 2 , 'IPAD' => 5) ); So now the same function can accept different kinds of output. The above can be applied in lots of places to make your code more agile. 6. Omit the closing php tag if it is the last thing in a script I wonder why this tip is omitted from so many blog posts on php tips. <?phpecho "Hello";//Now dont close this tag This will save you lots of problem. Lets take an example : A class file super_class.php <?phpclass super_class{ function super_function() { //super code }}?>//super extra character after the closing tag Now index.php require_once('super_class.php');//echo an image or pdf , or set the cookies or session data And you will get Headers already send error. Why ? because the "super extra character" has been echoed , and all headers went along with that. Now you start debugging. You may have to waste many hours to find the super extra space. Hence make it a habit to omit the closing tag : <?phpclass super_class{ function super_function() { //super code }}//No closing tag Thats better. 7. Collect all output at one place , and output at one shot to the browser This is called output buffering. Lets say you have been echoing content from different functions like this : function print_header(){ echo "<div id='header'>Site Log and Login links</div>";}function print_footer(){ echo "<div id='footer'>Site was made by me</div>";}print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}print_footer(); Instead of doing like that , first collect all output in one place. You can either store it inside variables in the functions or use ob_start and ob_end_clean. So now it should look like function print_header(){ $o = "<div id='header'>Site Log and Login links</div>"; return $o;}function print_footer(){ $o = "<div id='footer'>Site was made by me</div>"; return $o;}echo print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}echo print_footer(); So why should you do output buffering : You can change the output just before sending it to browser if you need to. Think about doing some str_replaces , or may be preg_replaces or may be adding some extra html at the end like profiler/debugger output Its a bad idea to send output to browser and do php processing at the same time. Have you ever seen a website where there is a Fatal error in the sidebar or in a box in the middle of the screen. You know why that happens ? Because processing and output are being mixed. 8. Send correct mime types via header when outputting non-html content Lets echo some xml. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataecho $xml; Works fine. But it needs some improvement. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataheader("content-type: text/xml");echo $xml; Note that header line. That line tells the browser that the content is xml content. So the browser can handle it correctly. Many javascript libraries also rely on header information. Similarly for javascript , css , jpg image , png image : Javascript header("content-type: application/x-javascript");echo "var a = 10"; CSS header("content-type: text/css");echo "#div id { background:#000; }"; 9. Set the correct character encoding for a mysql connection Ever faced a problem that unicode/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation. $host = 'localhost';$username = 'root';$password = 'super_secret';//Attempt to connect to database$c = mysqli_connect($host , $username, $password); //Check connection validityif (!$c) { die ("Could not connect to the database host: <br />". mysqli_connect_error());} //Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){ die('mysqli_set_charset() failed');} Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application. Otherwise what will happen ? You will see lots of boxes and ???????? in non english text. 10. Use htmlentities with the correct characterset option Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc. $value = htmlentities($this->value , ENT_QUOTES , 'UTF-8'); Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual. 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php. Use apache mod_gzip/mod_deflate to compress content via the .htaccess file. 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php. $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= "'$image' ,";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;//Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,]; Be smart. use json_encode : $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;//Output is : var images = ["myself.png","friends.png","colleagues.png"] Isn't that neat ? 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of "debugging" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on. Make sure that your application is as intelligent as possible and reports the most important information in the shortest time. $contents = "All the content";$file_path = "/var/www/project/content.txt";file_put_contents($file_path , $contents); That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons : Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file. $contents = "All the content";$dir = '/var/www/project';$file_path = $dir . "/content.txt";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die("Directory $dir is not writable, or does not exist. Please check");} By doing this you get the accurate information that where is a file write failing and why 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are "accessible" outside. Otherwise for example the files may be created by "php" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on. // Read and write for owner, read for everybody elsechmod("/somedir/somefile", 0644);// Everything for owner, read and execute for otherschmod("/somedir/somefile", 0755); 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ //Save the things} The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this : if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ //Save the things} Now you are free from the value the submit button 16. Use static variables in function where they always have same value //Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} Instead use static variables as : //Delay for some timefunction delay(){ static $sync_delay = null; if($sync_delay == null) { $sync_delay = get_option('sync_delay'); } echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} 17. Don't use the $_SESSION variable directly Some simple examples are : $_SESSION['username'] = $username;$username = $_SESSION['username']; But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain. Hence use application specific keys with wrapper functions : define('APP_ID' , 'abc_corp_ecommerce');//Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}//Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;} 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like : function utility_a(){ //This function does a utility thing like string processing}function utility_b(){ //This function does nother utility thing like database processing}function utility_c(){ //This function is ...} And you use the function throughout your application freely. You may want to wrap them into a class as static functions : class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}//and call them as $a = Utility::utility_a();$b = Utility::utility_b(); One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else. 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++; Its absolutely a WASTE. Write if($a == true){ $a_count++;} Dont try to make your code shorter by eating up syntax. Rather make your logic shorter. Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this : foreach($arr as $c => $v){ $arr[$c] = trim($v);} But it can more cleaner with array_map : $arr = array_map('trim' , $arr); This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more. 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters. The php filter extension provides simple way to validate or check values as being a valid 'something'. 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate']; Its a good habit. 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded : $db_records_in_array_format; //This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; //2MB moresome_function($cc); //Another 2MB ? The above thing is common when importing a csv file or exporting table to a csv file Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays. Consider passing them by reference , or storing them in a class variable : $a = get_large_array();pass_to_function(&$a); by doing this the same variable (and not its copy) will be available to the function. Check documentation class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { //process $this->a }} unset them as soon as possible , so that memory is freed and rest of the script can relax. Here is a simple demonstration of how assign by reference can save memory in some cases <?phpini_set('display_errors' , true);error_reporting(E_ALL);$a = array();for($i = 0; $i < 100000 ; $i++){ $a[$i] = 'A'.$i;}echo 'Memory usage in MB : '. memory_get_usage() / 1000000 . '<br />';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() / 1000000 . '<br />';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() / 1000000 . '<br />';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() / 1000000 . '<br />'; The output on a typical php 5.4 machine is : Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more. 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this : function add_to_cart(){ $db = new Database(); $db->query("INSERT INTO cart .....");}function empty_cart(){ $db = new Database(); $db->query("DELETE FROM cart .....");} Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory. Use the singleton pattern for special cases like database connection. 26. Avoid direct SQL query , abstract it $query = "INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')";$db->query($query); //call to mysqli_query() The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like: All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries. A very simple example of an activerecord insert function can be like this : function insert_record($table_name , $data){ foreach($data as $key => $value) { //mysqli_real_escape_string $data[$key] = $db->mres($value); } $fields = implode(',' , array_keys($data)); $values = "'" . implode("','" , array_values($data)) . "'"; //Final query $query = "INSERT INTO {$table}($fields) VALUES($values)"; return $db->query($query);}//data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);//perform the INSERT queryinsert_record('users' , $data); The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse). This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise. 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again. Benefits : Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue. Storing session in database makes many other things easier like: Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example : <head> <base href="http://www.domain.com/store/"></head><body> <img src="/static/imghw/default1.png" data-src="happy.jpg" class="lazy" / alt="40+ Useful Php tips for beginners ? Part 1" ></body></html> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories. Lets take an example www.domain.com/store/home.php www.domain.com/store/products/ipad.php In home.php the following can be written : <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> But in ipad.php the links have to be like this : <a href="../home.php">Home</a><a href="ipad.php">Ipad</a> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag. <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products/ipad.php 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing. ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT); On production , the display should be disabled. ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark. After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set. ini_set('log_errors' , '1');ini_set('error_log' , '/path/to/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); Note : 1. The path '/path/to/errors.txt' should be writable by the web server for errors to be logged there. 2. A separate error file is specified , otherwise all logs would go inside the apache/web server error log and get mixed up with other apache errors. 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver). 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like /var/log dont have to searched. 5. Dont set error_reporting to 0. It will not log anything then. Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file. Set 'display_errors=On' in php.ini on development machine On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page. Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work. Set 'display_errors=Off' in php.ini on production machine Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away. 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results. On a 64 bit machine you can see such output. $ php -aInteractive shellphp > echo strtotime("0000-00-00 00:00:00");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600 But on a 32 bit machine all of them would give bool(false). Check here for more. What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines. 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this : set_time_limit(30);//Rest of the code It may not always work. Any execution that happens outside the script via system calls/os functions like socket operations, database operations etc. will not be under control of set_time_limit. So if a database operation takes lot of time or "hangs" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time. 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it. A better solution : /** Method to execute a command in the terminal Uses : 1. system 2. passthru 3. exec 4. shell_exec*/function terminal($command){ //system if(function_exists('system')) { ob_start(); system($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //passthru else if(function_exists('passthru')) { ob_start(); passthru($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //exec else if(function_exists('exec')) { exec($command , $output , $return_var); $output = implode("\n" , $output); } //shell_exec else if(function_exists('shell_exec')) { $output = shell_exec($command) ; } else { $output = 'Command execution not possible on this system'; $return_var = 1; } return array('output' => $output , 'status' => $return_var);}terminal('ls'); The above function will execute the shell command using whichever function is available , keeping your code consistent. 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user. 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise. Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind. 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily. Few popular libraries are : mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference. 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code. Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community. They contain user feedback, expert advice and useful code snippets. So check them out. 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!! 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc. The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more 1. Codeigniter 2. WordPress 3. Joomla CMS 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment. Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster. Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free. 本站聲明 本文內(nèi)容由網(wǎng)友自發(fā)貢獻,版權(quán)歸原作者所有,本站不承擔相應(yīng)法律責任。如您發(fā)現(xiàn)有涉嫌抄襲侵權(quán)的內(nèi)容,請聯(lián)系admin@php.cn 熱AI工具 Undress AI Tool 免費脫衣服圖片 Undresser.AI Undress 人工智能驅(qū)動的應(yīng)用程序,用于創(chuàng)建逼真的裸體照片 AI Clothes Remover 用于從照片中去除衣服的在線人工智能工具。 Clothoff.io AI脫衣機 Video Face Swap 使用我們完全免費的人工智能換臉工具輕松在任何視頻中換臉! 顯示更多 熱門文章 指南:恒星刀片保存文件位置/保存文件丟失/不保存 4 周前 By DDD Oguri Cap Build Guide |漂亮的德比志 2 周前 By Jack chen Agnes Tachyon Build Guide |漂亮的德比志 1 周前 By Jack chen 沙丘:覺醒 - 高級行星學家Quest演練 4 周前 By Jack chen 約會一切:德克和哈珀關(guān)系指南 4 周前 By Jack chen 顯示更多 熱工具 記事本++7.3.1 好用且免費的代碼編輯器 SublimeText3漢化版 中文版,非常好用 禪工作室 13.0.1 功能強大的PHP集成開發(fā)環(huán)境 Dreamweaver CS6 視覺化網(wǎng)頁開發(fā)工具 SublimeText3 Mac版 神級代碼編輯軟件(SublimeText3) 顯示更多 熱門話題 gmail郵箱登陸入口在哪里 8638 17 Java教程 1783 16 CakePHP 教程 1728 56 Laravel 教程 1578 28 PHP教程 1442 31 顯示更多 Related knowledge 如何在PHP中實施身份驗證和授權(quán)? Jun 20, 2025 am 01:03 AM tosecurelyhandleauthenticationandationallizationInphp,lofterTheSesteps:1.AlwaysHashPasswordSwithPassword_hash()andverifyusingspasspassword_verify(),usepreparedStatatementStopreventsqlineptions,andStoreSeruserDatain usseruserDatain $ _sessiveferterlogin.2.implementrole-2.imaccessccsccccccccccccccccccccccccc. 如何在PHP中安全地處理文件上傳? Jun 19, 2025 am 01:05 AM 要安全處理PHP中的文件上傳,核心在于驗證文件類型、重命名文件并限制權(quán)限。1.使用finfo_file()檢查真實MIME類型,僅允許特定類型如image/jpeg;2.用uniqid()生成隨機文件名,存儲至非Web根目錄;3.通過php.ini和HTML表單限制文件大小,設(shè)置目錄權(quán)限為0755;4.使用ClamAV掃描惡意軟件,增強安全性。這些步驟有效防止安全漏洞,確保文件上傳過程安全可靠。 PHP中==(松散比較)和===(嚴格的比較)之間有什么區(qū)別? Jun 19, 2025 am 01:07 AM 在PHP中,==與===的主要區(qū)別在于類型檢查的嚴格程度。==在比較前會進行類型轉(zhuǎn)換,例如5=="5"返回true,而===要求值和類型都相同才會返回true,例如5==="5"返回false。使用場景上,===更安全應(yīng)優(yōu)先使用,==僅在需要類型轉(zhuǎn)換時使用。 如何在PHP( - , *, /,%)中執(zhí)行算術(shù)操作? Jun 19, 2025 pm 05:13 PM PHP中使用基本數(shù)學運算的方法如下:1.加法用 號,支持整數(shù)和浮點數(shù),也可用于變量,字符串數(shù)字會自動轉(zhuǎn)換但不推薦依賴;2.減法用-號,變量同理,類型轉(zhuǎn)換同樣適用;3.乘法用*號,適用于數(shù)字及類似字符串;4.除法用/號,需避免除以零,并注意結(jié)果可能是浮點數(shù);5.取模用%號,可用于判斷奇偶數(shù),處理負數(shù)時余數(shù)符號與被除數(shù)一致。正確使用這些運算符的關(guān)鍵在于確保數(shù)據(jù)類型清晰并處理好邊界情況。 如何與PHP的NOSQL數(shù)據(jù)庫(例如MongoDB,Redis)進行交互? Jun 19, 2025 am 01:07 AM 是的,PHP可以通過特定擴展或庫與MongoDB和Redis等NoSQL數(shù)據(jù)庫交互。首先,使用MongoDBPHP驅(qū)動(通過PECL或Composer安裝)創(chuàng)建客戶端實例并操作數(shù)據(jù)庫及集合,支持插入、查詢、聚合等操作;其次,使用Predis庫或phpredis擴展連接Redis,執(zhí)行鍵值設(shè)置與獲取,推薦phpredis用于高性能場景,Predis則便于快速部署;兩者均適用于生產(chǎn)環(huán)境且文檔完善。 我如何了解最新的PHP開發(fā)和最佳實踐? Jun 23, 2025 am 12:56 AM TostaycurrentwithPHPdevelopmentsandbestpractices,followkeynewssourceslikePHP.netandPHPWeekly,engagewithcommunitiesonforumsandconferences,keeptoolingupdatedandgraduallyadoptnewfeatures,andreadorcontributetoopensourceprojects.First,followreliablesource 什么是PHP,為什么它用于Web開發(fā)? Jun 23, 2025 am 12:55 AM PHPbecamepopularforwebdevelopmentduetoitseaseoflearning,seamlessintegrationwithHTML,widespreadhostingsupport,andalargeecosystemincludingframeworkslikeLaravelandCMSplatformslikeWordPress.Itexcelsinhandlingformsubmissions,managingusersessions,interacti 如何設(shè)置PHP時區(qū)? Jun 25, 2025 am 01:00 AM tosetTherightTimeZoneInphp,restate_default_timezone_set()functionAtthestArtofyourscriptWithavalIdidentIdentifiersuchas'america/new_york'.1.usedate_default_default_timezone_set_set() See all articles
CSS<\/p>
header(\"content-type: text\/css\");echo \"#div id { background:#000; }\";<\/pre> 9. Set the correct character encoding for a mysql connection Ever faced a problem that unicode\/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation.<\/p> $host = 'localhost';$username = 'root';$password = 'super_secret';\/\/Attempt to connect to database$c = mysqli_connect($host , $username, $password);\t\t\/\/Check connection validityif (!$c) {\tdie (\"Could not connect to the database host: \". mysqli_connect_error());}\t\t\/\/Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){\tdie('mysqli_set_charset() failed');}<\/pre> Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application.<\/p> Otherwise what will happen ? You will see lots of boxes and ???????? in non english text.<\/p> 10. Use htmlentities with the correct characterset option Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc.<\/p> $value = htmlentities($this->value , ENT_QUOTES , 'UTF-8');<\/pre> Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual.<\/p> 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php.<\/p> Use apache mod_gzip\/mod_deflate to compress content via the .htaccess file.<\/p> 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php.<\/p> $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= \"'$image' ,\";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;\/\/Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,];<\/pre> Be smart. use json_encode :<\/p> $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;\/\/Output is : var images = [\"myself.png\",\"friends.png\",\"colleagues.png\"]<\/pre> Isn't that neat ?<\/p> 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of \"debugging\" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on.<\/p> Make sure that your application is as intelligent as possible and reports the most important information in the shortest time.<\/p> $contents = \"All the content\";$file_path = \"\/var\/www\/project\/content.txt\";file_put_contents($file_path , $contents);<\/pre> That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons :<\/p> Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file.<\/p> $contents = \"All the content\";$dir = '\/var\/www\/project';$file_path = $dir . \"\/content.txt\";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die(\"Directory $dir is not writable, or does not exist. Please check\");}<\/pre> By doing this you get the accurate information that where is a file write failing and why<\/p> 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are \"accessible\" outside. Otherwise for example the files may be created by \"php\" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on.<\/p> \/\/ Read and write for owner, read for everybody elsechmod(\"\/somedir\/somefile\", 0644);\/\/ Everything for owner, read and execute for otherschmod(\"\/somedir\/somefile\", 0755);<\/pre> 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ \/\/Save the things}<\/pre> The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this :<\/p> if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ \/\/Save the things}<\/pre> Now you are free from the value the submit button<\/p> 16. Use static variables in function where they always have same value \/\/Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); \t echo \"Delaying for $sync_delay seconds...\"; sleep($sync_delay); echo \"Done \";}<\/pre> Instead use static variables as :<\/p> \/\/Delay for some timefunction delay(){ static $sync_delay = null;\t if($sync_delay == null) {\t$sync_delay = get_option('sync_delay'); }\t echo \"Delaying for $sync_delay seconds...\"; sleep($sync_delay); echo \"Done \";}<\/pre> 17. Don't use the $_SESSION variable directly Some simple examples are :<\/p> $_SESSION['username'] = $username;$username = $_SESSION['username'];<\/pre> But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain.<\/p> Hence use application specific keys with wrapper functions :<\/p> define('APP_ID' , 'abc_corp_ecommerce');\/\/Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}\/\/Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;}<\/pre> 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like :<\/p> function utility_a(){ \/\/This function does a utility thing like string processing}function utility_b(){ \/\/This function does nother utility thing like database processing}function utility_c(){ \/\/This function is ...}<\/pre> And you use the function throughout your application freely. You may want to wrap them into a class as static functions :<\/p> class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}\/\/and call them as $a = Utility::utility_a();$b = Utility::utility_b();<\/pre> One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else.<\/p> 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++;<\/pre> Its absolutely a WASTE.<\/p> Write<\/p> if($a == true){ $a_count++;}<\/pre> Dont try to make your code shorter by eating up syntax. Rather make your logic shorter.<\/p> Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this :<\/p> foreach($arr as $c => $v){\t$arr[$c] = trim($v);}<\/pre> But it can more cleaner with array_map :<\/p> $arr = array_map('trim' , $arr);<\/pre> This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more.<\/p> 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters.<\/p> The php filter extension provides simple way to validate or check values as being a valid 'something'.<\/p> 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate'];<\/pre> Its a good habit.<\/p> 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose<\/p> 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded :<\/p> $db_records_in_array_format; \/\/This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; \/\/2MB moresome_function($cc); \/\/Another 2MB ?<\/pre> The above thing is common when importing a csv file or exporting table to a csv file<\/p> Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays.<\/p> Consider passing them by reference , or storing them in a class variable :<\/p> $a = get_large_array();pass_to_function(&$a);<\/pre> by doing this the same variable (and not its copy) will be available to the function. Check documentation<\/p> class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { \/\/process $this->a }}<\/pre> unset them as soon as possible , so that memory is freed and rest of the script can relax.<\/p> Here is a simple demonstration of how assign by reference can save memory in some cases<\/p> ';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() \/ 1000000 . '';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() \/ 1000000 . '';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() \/ 1000000 . '';<\/pre> The output on a typical php 5.4 machine is :<\/p> Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 <\/p> So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more.<\/p> 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this :<\/p> function add_to_cart(){ $db = new Database(); $db->query(\"INSERT INTO cart .....\");}function empty_cart(){ $db = new Database(); $db->query(\"DELETE FROM cart .....\");}<\/pre> Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory.<\/p> Use the singleton pattern for special cases like database connection.<\/p> 26. Avoid direct SQL query , abstract it $query = \"INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')\";$db->query($query); \/\/call to mysqli_query()<\/pre> The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like:<\/p> All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord<\/p> It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries.<\/p> A very simple example of an activerecord insert function can be like this :<\/p> function insert_record($table_name , $data){ foreach($data as $key => $value) {\t\/\/mysqli_real_escape_string $data[$key] = $db->mres($value); }\t\t $fields = implode(',' , array_keys($data)); $values = \"'\" . implode(\"','\" , array_values($data)) . \"'\"; \/\/Final query\t $query = \"INSERT INTO {$table}($fields) VALUES($values)\";\t\t return $db->query($query);}\/\/data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);\/\/perform the INSERT queryinsert_record('users' , $data);<\/pre> The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse).<\/p> This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise.<\/p> 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again.<\/p> Benefits :<\/p> Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue.<\/p> Storing session in database makes many other things easier like:<\/p> Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines\/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example :<\/p> <\/head> <\/body><\/html><\/pre> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories.<\/p> Lets take an example<\/p> www.domain.com\/store\/home.php www.domain.com\/store\/products\/ipad.php<\/p> In home.php the following can be written :<\/p> Home<\/a>Ipad<\/a><\/pre> But in ipad.php the links have to be like this :<\/p> Home<\/a>Ipad<\/a><\/pre> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag.<\/p> <\/head>Home<\/a>Ipad<\/a><\/body><\/html><\/pre> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products\/ipad.php<\/p> 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing.<\/p> ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT);<\/pre> On production , the display should be disabled.<\/p> ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark.<\/p> After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set.<\/p> ini_set('log_errors' , '1');ini_set('error_log' , '\/path\/to\/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> Note :<\/p> 1. The path '\/path\/to\/errors.txt' should be writable by the web server for errors to be logged there.<\/p> 2. A separate error file is specified , otherwise all logs would go inside the apache\/web server error log and get mixed up with other apache errors.<\/p> 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver).<\/p> 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like \/var\/log dont have to searched.<\/p> 5. Dont set error_reporting to 0. It will not log anything then.<\/p> Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file.<\/p> Set 'display_errors=On' in php.ini on development machine<\/p> On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page.<\/p> Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work.<\/p> Set 'display_errors=Off' in php.ini on production machine<\/p> Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away.<\/p> 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results.<\/p> On a 64 bit machine you can see such output.<\/p> $ php -aInteractive shellphp > echo strtotime(\"0000-00-00 00:00:00\");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600<\/pre> But on a 32 bit machine all of them would give bool(false). Check here for more.<\/p> What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines.<\/p> 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this :<\/p> set_time_limit(30);\/\/Rest of the code<\/pre> It may not always work. Any execution that happens outside the script via system calls\/os functions like socket operations, database operations etc. will not be under control of set_time_limit.<\/p> So if a database operation takes lot of time or \"hangs\" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time.<\/p> 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it.<\/p> A better solution :<\/p> \/**\tMethod to execute a command in the terminal\tUses :\t1. system\t2. passthru\t3. exec\t4. shell_exec*\/function terminal($command){\t\/\/system\tif(function_exists('system'))\t{\t\tob_start();\t\tsystem($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/passthru\telse if(function_exists('passthru'))\t{\t\tob_start();\t\tpassthru($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/exec\telse if(function_exists('exec'))\t{\t\texec($command , $output , $return_var);\t\t$output = implode(\"\\n\" , $output);\t}\t\/\/shell_exec\telse if(function_exists('shell_exec'))\t{\t\t$output = shell_exec($command) ;\t}\telse\t{\t\t$output = 'Command execution not possible on this system';\t\t$return_var = 1;\t}\treturn array('output' => $output , 'status' => $return_var);}terminal('ls');<\/pre> The above function will execute the shell command using whichever function is available , keeping your code consistent.<\/p> 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user.<\/p> 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise.<\/p> Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind.<\/p> 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily.<\/p> Few popular libraries are :<\/p> mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference.<\/p> 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code.<\/p> Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community.<\/p> They contain user feedback, expert advice and useful code snippets. So check them out.<\/p> 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!!<\/p> 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc.<\/p> The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more<\/p> 1. Codeigniter 2. WordPress 3. Joomla CMS<\/p> 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment.<\/p> Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster.<\/p> Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free.<\/p> "} 社區(qū) 文章 合集 問答 學習 課程 編程詞典 工具庫 開發(fā)工具 網(wǎng)站源碼 PHP 庫 JS特效 網(wǎng)站素材 擴展插件 AI工具 休閑 游戲下載 游戲教程 簡體中文 簡體中文 English 繁體中文 日本語 ??? Melayu Fran?ais Deutsch Login singup 首頁 后端開發(fā) php教程 40+ Useful Php tips for beginners ? Part 1 40+ Useful Php tips for beginners ? Part 1 WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB Jun 23, 2016 pm 02:37 PM PHP學習指南 http://www.binarytides.com/category/php-2/tutorial/ In this series we are going to look into some useful tips and techniques that can be used to improve and optimise your php code. Note that these php tips are meant for beginners and not those who are already using mvc frameworks etc. The Techniques 1. Do not use relative paths , instead define a ROOT path Its quite common to see such lines : require_once('http://www.cnblogs.com/lib/some_class.php'); This approach has many drawbacks : It first searches for directories specified in the include paths of php , then looks from the current directory. So many directories are checked. When a script is included by another script in a different directory , its base directory changes to that of the including script. Another issue , is that when a script is being run from cron , it may not have its parent directory as the working directory. So its a good idea to have absolute paths : define('ROOT' , '/var/www/project/');require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code Now this is an absolute path and will always stay constant. But we can improve this further. The directory /var/www/project can change , so do we change it everytime ? No instead we make it portable using magic constants like __FILE__ . Take a closer look : //suppose your script is /var/www/project/index.php//Then __FILE__ will always have that full path.define('ROOT' , pathinfo(__FILE__, PATHINFO_DIRNAME));require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code So now even if you shift your project to a different directory , like moving it to an online server , the same code will run without any changes. 2. Dont use require , include , require_once or include_once Your script could be including various files on top , like class libraries , files for utility and helper functions etc like this : require_once('lib/Database.php');require_once('lib/Mail.php');require_once('helpers/utitlity_functions.php'); This is rather primitive. The code needs to be more flexible. Write up helper functions to include things more easily. Lets take an example : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); require_once( $path ); }load_class('Database');load_class('Mail'); See any difference ? You must. It does not need any more explanation. You can improve this further if you wish to like this : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); if(file_exists($path)) { require_once( $path ); }} There are a lot of things that can be done with this : Search multiple directories for the same class file. Change the directory containing class files easily , without breaking the code anywhere. Use similar functions for loading files that contain helper functions , html content etc. 3. Maintain debugging environment in your application During development we echo database queries , dump variables which are creating problems , and then once the problem is solved , we comment them or erase them. But its a good idea to let everything stay and help in the long run On your development machine you can do this : define('ENVIRONMENT' , 'development');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } And on the server you can do this : define('ENVIRONMENT' , 'production');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } 4. Propagate status messages via session Status messages are those messages that are generated after doing a task. <?phpif($wrong_username || $wrong_password){ $msg = 'Invalid username or password';}?><html><body><?php echo $msg; ?><form>...</form></body></html> Code like that is common. Using variables to show status messages has limitations. They cannot be send via redirects (unless you propagate them as GET variables to the next script , which is very silly). In large scripts there might be multiple messages etc. Best way is to use session to propagate them (even if on same page). For this there has to be a session_start on every page. function set_flash($msg){ $_SESSION['message'] = $msg;}function get_flash(){ $msg = $_SESSION['message']; unset($_SESSION['message']); return $msg;} and in your script : <?phpif($wrong_username || $wrong_password){ set_flash('Invalid username or password');}?><html><body>Status is : <?php echo get_flash(); ?><form>...</form></body></html> 5. Make your functions flexible function add_to_cart($item_id , $qty){ $_SESSION['cart'][$item_id] = $qty;}add_to_cart( 'IPHONE3' , 2 ); When adding a single item you use the above function. When adding multiple items , will you create another function ? NO. Just make the function flexible enough to take different kinds of parameters. Have a closer look : function add_to_cart($item_id , $qty){ if(!is_array($item_id)) { $_SESSION['cart'][$item_id] = $qty; } else { foreach($item_id as $i_id => $qty) { $_SESSION['cart'][$i_id] = $qty; } }}add_to_cart( 'IPHONE3' , 2 );add_to_cart( array('IPHONE3' => 2 , 'IPAD' => 5) ); So now the same function can accept different kinds of output. The above can be applied in lots of places to make your code more agile. 6. Omit the closing php tag if it is the last thing in a script I wonder why this tip is omitted from so many blog posts on php tips. <?phpecho "Hello";//Now dont close this tag This will save you lots of problem. Lets take an example : A class file super_class.php <?phpclass super_class{ function super_function() { //super code }}?>//super extra character after the closing tag Now index.php require_once('super_class.php');//echo an image or pdf , or set the cookies or session data And you will get Headers already send error. Why ? because the "super extra character" has been echoed , and all headers went along with that. Now you start debugging. You may have to waste many hours to find the super extra space. Hence make it a habit to omit the closing tag : <?phpclass super_class{ function super_function() { //super code }}//No closing tag Thats better. 7. Collect all output at one place , and output at one shot to the browser This is called output buffering. Lets say you have been echoing content from different functions like this : function print_header(){ echo "<div id='header'>Site Log and Login links</div>";}function print_footer(){ echo "<div id='footer'>Site was made by me</div>";}print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}print_footer(); Instead of doing like that , first collect all output in one place. You can either store it inside variables in the functions or use ob_start and ob_end_clean. So now it should look like function print_header(){ $o = "<div id='header'>Site Log and Login links</div>"; return $o;}function print_footer(){ $o = "<div id='footer'>Site was made by me</div>"; return $o;}echo print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}echo print_footer(); So why should you do output buffering : You can change the output just before sending it to browser if you need to. Think about doing some str_replaces , or may be preg_replaces or may be adding some extra html at the end like profiler/debugger output Its a bad idea to send output to browser and do php processing at the same time. Have you ever seen a website where there is a Fatal error in the sidebar or in a box in the middle of the screen. You know why that happens ? Because processing and output are being mixed. 8. Send correct mime types via header when outputting non-html content Lets echo some xml. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataecho $xml; Works fine. But it needs some improvement. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataheader("content-type: text/xml");echo $xml; Note that header line. That line tells the browser that the content is xml content. So the browser can handle it correctly. Many javascript libraries also rely on header information. Similarly for javascript , css , jpg image , png image : Javascript header("content-type: application/x-javascript");echo "var a = 10"; CSS header("content-type: text/css");echo "#div id { background:#000; }"; 9. Set the correct character encoding for a mysql connection Ever faced a problem that unicode/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation. $host = 'localhost';$username = 'root';$password = 'super_secret';//Attempt to connect to database$c = mysqli_connect($host , $username, $password); //Check connection validityif (!$c) { die ("Could not connect to the database host: <br />". mysqli_connect_error());} //Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){ die('mysqli_set_charset() failed');} Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application. Otherwise what will happen ? You will see lots of boxes and ???????? in non english text. 10. Use htmlentities with the correct characterset option Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc. $value = htmlentities($this->value , ENT_QUOTES , 'UTF-8'); Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual. 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php. Use apache mod_gzip/mod_deflate to compress content via the .htaccess file. 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php. $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= "'$image' ,";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;//Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,]; Be smart. use json_encode : $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;//Output is : var images = ["myself.png","friends.png","colleagues.png"] Isn't that neat ? 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of "debugging" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on. Make sure that your application is as intelligent as possible and reports the most important information in the shortest time. $contents = "All the content";$file_path = "/var/www/project/content.txt";file_put_contents($file_path , $contents); That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons : Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file. $contents = "All the content";$dir = '/var/www/project';$file_path = $dir . "/content.txt";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die("Directory $dir is not writable, or does not exist. Please check");} By doing this you get the accurate information that where is a file write failing and why 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are "accessible" outside. Otherwise for example the files may be created by "php" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on. // Read and write for owner, read for everybody elsechmod("/somedir/somefile", 0644);// Everything for owner, read and execute for otherschmod("/somedir/somefile", 0755); 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ //Save the things} The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this : if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ //Save the things} Now you are free from the value the submit button 16. Use static variables in function where they always have same value //Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} Instead use static variables as : //Delay for some timefunction delay(){ static $sync_delay = null; if($sync_delay == null) { $sync_delay = get_option('sync_delay'); } echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} 17. Don't use the $_SESSION variable directly Some simple examples are : $_SESSION['username'] = $username;$username = $_SESSION['username']; But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain. Hence use application specific keys with wrapper functions : define('APP_ID' , 'abc_corp_ecommerce');//Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}//Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;} 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like : function utility_a(){ //This function does a utility thing like string processing}function utility_b(){ //This function does nother utility thing like database processing}function utility_c(){ //This function is ...} And you use the function throughout your application freely. You may want to wrap them into a class as static functions : class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}//and call them as $a = Utility::utility_a();$b = Utility::utility_b(); One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else. 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++; Its absolutely a WASTE. Write if($a == true){ $a_count++;} Dont try to make your code shorter by eating up syntax. Rather make your logic shorter. Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this : foreach($arr as $c => $v){ $arr[$c] = trim($v);} But it can more cleaner with array_map : $arr = array_map('trim' , $arr); This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more. 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters. The php filter extension provides simple way to validate or check values as being a valid 'something'. 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate']; Its a good habit. 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded : $db_records_in_array_format; //This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; //2MB moresome_function($cc); //Another 2MB ? The above thing is common when importing a csv file or exporting table to a csv file Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays. Consider passing them by reference , or storing them in a class variable : $a = get_large_array();pass_to_function(&$a); by doing this the same variable (and not its copy) will be available to the function. Check documentation class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { //process $this->a }} unset them as soon as possible , so that memory is freed and rest of the script can relax. Here is a simple demonstration of how assign by reference can save memory in some cases <?phpini_set('display_errors' , true);error_reporting(E_ALL);$a = array();for($i = 0; $i < 100000 ; $i++){ $a[$i] = 'A'.$i;}echo 'Memory usage in MB : '. memory_get_usage() / 1000000 . '<br />';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() / 1000000 . '<br />';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() / 1000000 . '<br />';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() / 1000000 . '<br />'; The output on a typical php 5.4 machine is : Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more. 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this : function add_to_cart(){ $db = new Database(); $db->query("INSERT INTO cart .....");}function empty_cart(){ $db = new Database(); $db->query("DELETE FROM cart .....");} Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory. Use the singleton pattern for special cases like database connection. 26. Avoid direct SQL query , abstract it $query = "INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')";$db->query($query); //call to mysqli_query() The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like: All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries. A very simple example of an activerecord insert function can be like this : function insert_record($table_name , $data){ foreach($data as $key => $value) { //mysqli_real_escape_string $data[$key] = $db->mres($value); } $fields = implode(',' , array_keys($data)); $values = "'" . implode("','" , array_values($data)) . "'"; //Final query $query = "INSERT INTO {$table}($fields) VALUES($values)"; return $db->query($query);}//data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);//perform the INSERT queryinsert_record('users' , $data); The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse). This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise. 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again. Benefits : Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue. Storing session in database makes many other things easier like: Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example : <head> <base href="http://www.domain.com/store/"></head><body> <img src="/static/imghw/default1.png" data-src="happy.jpg" class="lazy" / alt="40+ Useful Php tips for beginners ? Part 1" ></body></html> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories. Lets take an example www.domain.com/store/home.php www.domain.com/store/products/ipad.php In home.php the following can be written : <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> But in ipad.php the links have to be like this : <a href="../home.php">Home</a><a href="ipad.php">Ipad</a> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag. <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products/ipad.php 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing. ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT); On production , the display should be disabled. ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark. After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set. ini_set('log_errors' , '1');ini_set('error_log' , '/path/to/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); Note : 1. The path '/path/to/errors.txt' should be writable by the web server for errors to be logged there. 2. A separate error file is specified , otherwise all logs would go inside the apache/web server error log and get mixed up with other apache errors. 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver). 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like /var/log dont have to searched. 5. Dont set error_reporting to 0. It will not log anything then. Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file. Set 'display_errors=On' in php.ini on development machine On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page. Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work. Set 'display_errors=Off' in php.ini on production machine Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away. 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results. On a 64 bit machine you can see such output. $ php -aInteractive shellphp > echo strtotime("0000-00-00 00:00:00");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600 But on a 32 bit machine all of them would give bool(false). Check here for more. What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines. 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this : set_time_limit(30);//Rest of the code It may not always work. Any execution that happens outside the script via system calls/os functions like socket operations, database operations etc. will not be under control of set_time_limit. So if a database operation takes lot of time or "hangs" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time. 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it. A better solution : /** Method to execute a command in the terminal Uses : 1. system 2. passthru 3. exec 4. shell_exec*/function terminal($command){ //system if(function_exists('system')) { ob_start(); system($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //passthru else if(function_exists('passthru')) { ob_start(); passthru($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //exec else if(function_exists('exec')) { exec($command , $output , $return_var); $output = implode("\n" , $output); } //shell_exec else if(function_exists('shell_exec')) { $output = shell_exec($command) ; } else { $output = 'Command execution not possible on this system'; $return_var = 1; } return array('output' => $output , 'status' => $return_var);}terminal('ls'); The above function will execute the shell command using whichever function is available , keeping your code consistent. 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user. 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise. Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind. 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily. Few popular libraries are : mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference. 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code. Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community. They contain user feedback, expert advice and useful code snippets. So check them out. 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!! 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc. The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more 1. Codeigniter 2. WordPress 3. Joomla CMS 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment. Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster. Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free. 本站聲明 本文內(nèi)容由網(wǎng)友自發(fā)貢獻,版權(quán)歸原作者所有,本站不承擔相應(yīng)法律責任。如您發(fā)現(xiàn)有涉嫌抄襲侵權(quán)的內(nèi)容,請聯(lián)系admin@php.cn 熱AI工具 Undress AI Tool 免費脫衣服圖片 Undresser.AI Undress 人工智能驅(qū)動的應(yīng)用程序,用于創(chuàng)建逼真的裸體照片 AI Clothes Remover 用于從照片中去除衣服的在線人工智能工具。 Clothoff.io AI脫衣機 Video Face Swap 使用我們完全免費的人工智能換臉工具輕松在任何視頻中換臉! 顯示更多 熱門文章 指南:恒星刀片保存文件位置/保存文件丟失/不保存 4 周前 By DDD Oguri Cap Build Guide |漂亮的德比志 2 周前 By Jack chen Agnes Tachyon Build Guide |漂亮的德比志 1 周前 By Jack chen 沙丘:覺醒 - 高級行星學家Quest演練 4 周前 By Jack chen 約會一切:德克和哈珀關(guān)系指南 4 周前 By Jack chen 顯示更多 熱工具 記事本++7.3.1 好用且免費的代碼編輯器 SublimeText3漢化版 中文版,非常好用 禪工作室 13.0.1 功能強大的PHP集成開發(fā)環(huán)境 Dreamweaver CS6 視覺化網(wǎng)頁開發(fā)工具 SublimeText3 Mac版 神級代碼編輯軟件(SublimeText3) 顯示更多 熱門話題 gmail郵箱登陸入口在哪里 8638 17 Java教程 1783 16 CakePHP 教程 1728 56 Laravel 教程 1578 28 PHP教程 1442 31 顯示更多 Related knowledge 如何在PHP中實施身份驗證和授權(quán)? Jun 20, 2025 am 01:03 AM tosecurelyhandleauthenticationandationallizationInphp,lofterTheSesteps:1.AlwaysHashPasswordSwithPassword_hash()andverifyusingspasspassword_verify(),usepreparedStatatementStopreventsqlineptions,andStoreSeruserDatain usseruserDatain $ _sessiveferterlogin.2.implementrole-2.imaccessccsccccccccccccccccccccccccc. 如何在PHP中安全地處理文件上傳? Jun 19, 2025 am 01:05 AM 要安全處理PHP中的文件上傳,核心在于驗證文件類型、重命名文件并限制權(quán)限。1.使用finfo_file()檢查真實MIME類型,僅允許特定類型如image/jpeg;2.用uniqid()生成隨機文件名,存儲至非Web根目錄;3.通過php.ini和HTML表單限制文件大小,設(shè)置目錄權(quán)限為0755;4.使用ClamAV掃描惡意軟件,增強安全性。這些步驟有效防止安全漏洞,確保文件上傳過程安全可靠。 PHP中==(松散比較)和===(嚴格的比較)之間有什么區(qū)別? Jun 19, 2025 am 01:07 AM 在PHP中,==與===的主要區(qū)別在于類型檢查的嚴格程度。==在比較前會進行類型轉(zhuǎn)換,例如5=="5"返回true,而===要求值和類型都相同才會返回true,例如5==="5"返回false。使用場景上,===更安全應(yīng)優(yōu)先使用,==僅在需要類型轉(zhuǎn)換時使用。 如何在PHP( - , *, /,%)中執(zhí)行算術(shù)操作? Jun 19, 2025 pm 05:13 PM PHP中使用基本數(shù)學運算的方法如下:1.加法用 號,支持整數(shù)和浮點數(shù),也可用于變量,字符串數(shù)字會自動轉(zhuǎn)換但不推薦依賴;2.減法用-號,變量同理,類型轉(zhuǎn)換同樣適用;3.乘法用*號,適用于數(shù)字及類似字符串;4.除法用/號,需避免除以零,并注意結(jié)果可能是浮點數(shù);5.取模用%號,可用于判斷奇偶數(shù),處理負數(shù)時余數(shù)符號與被除數(shù)一致。正確使用這些運算符的關(guān)鍵在于確保數(shù)據(jù)類型清晰并處理好邊界情況。 如何與PHP的NOSQL數(shù)據(jù)庫(例如MongoDB,Redis)進行交互? Jun 19, 2025 am 01:07 AM 是的,PHP可以通過特定擴展或庫與MongoDB和Redis等NoSQL數(shù)據(jù)庫交互。首先,使用MongoDBPHP驅(qū)動(通過PECL或Composer安裝)創(chuàng)建客戶端實例并操作數(shù)據(jù)庫及集合,支持插入、查詢、聚合等操作;其次,使用Predis庫或phpredis擴展連接Redis,執(zhí)行鍵值設(shè)置與獲取,推薦phpredis用于高性能場景,Predis則便于快速部署;兩者均適用于生產(chǎn)環(huán)境且文檔完善。 我如何了解最新的PHP開發(fā)和最佳實踐? Jun 23, 2025 am 12:56 AM TostaycurrentwithPHPdevelopmentsandbestpractices,followkeynewssourceslikePHP.netandPHPWeekly,engagewithcommunitiesonforumsandconferences,keeptoolingupdatedandgraduallyadoptnewfeatures,andreadorcontributetoopensourceprojects.First,followreliablesource 什么是PHP,為什么它用于Web開發(fā)? Jun 23, 2025 am 12:55 AM PHPbecamepopularforwebdevelopmentduetoitseaseoflearning,seamlessintegrationwithHTML,widespreadhostingsupport,andalargeecosystemincludingframeworkslikeLaravelandCMSplatformslikeWordPress.Itexcelsinhandlingformsubmissions,managingusersessions,interacti 如何設(shè)置PHP時區(qū)? Jun 25, 2025 am 01:00 AM tosetTherightTimeZoneInphp,restate_default_timezone_set()functionAtthestArtofyourscriptWithavalIdidentIdentifiersuchas'america/new_york'.1.usedate_default_default_timezone_set_set() See all articles
Ever faced a problem that unicode\/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation.<\/p>
$host = 'localhost';$username = 'root';$password = 'super_secret';\/\/Attempt to connect to database$c = mysqli_connect($host , $username, $password);\t\t\/\/Check connection validityif (!$c) {\tdie (\"Could not connect to the database host: \". mysqli_connect_error());}\t\t\/\/Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){\tdie('mysqli_set_charset() failed');}<\/pre> Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application.<\/p> Otherwise what will happen ? You will see lots of boxes and ???????? in non english text.<\/p> 10. Use htmlentities with the correct characterset option Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc.<\/p> $value = htmlentities($this->value , ENT_QUOTES , 'UTF-8');<\/pre> Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual.<\/p> 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php.<\/p> Use apache mod_gzip\/mod_deflate to compress content via the .htaccess file.<\/p> 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php.<\/p> $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= \"'$image' ,\";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;\/\/Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,];<\/pre> Be smart. use json_encode :<\/p> $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;\/\/Output is : var images = [\"myself.png\",\"friends.png\",\"colleagues.png\"]<\/pre> Isn't that neat ?<\/p> 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of \"debugging\" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on.<\/p> Make sure that your application is as intelligent as possible and reports the most important information in the shortest time.<\/p> $contents = \"All the content\";$file_path = \"\/var\/www\/project\/content.txt\";file_put_contents($file_path , $contents);<\/pre> That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons :<\/p> Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file.<\/p> $contents = \"All the content\";$dir = '\/var\/www\/project';$file_path = $dir . \"\/content.txt\";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die(\"Directory $dir is not writable, or does not exist. Please check\");}<\/pre> By doing this you get the accurate information that where is a file write failing and why<\/p> 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are \"accessible\" outside. Otherwise for example the files may be created by \"php\" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on.<\/p> \/\/ Read and write for owner, read for everybody elsechmod(\"\/somedir\/somefile\", 0644);\/\/ Everything for owner, read and execute for otherschmod(\"\/somedir\/somefile\", 0755);<\/pre> 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ \/\/Save the things}<\/pre> The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this :<\/p> if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ \/\/Save the things}<\/pre> Now you are free from the value the submit button<\/p> 16. Use static variables in function where they always have same value \/\/Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); \t echo \"Delaying for $sync_delay seconds...\"; sleep($sync_delay); echo \"Done \";}<\/pre> Instead use static variables as :<\/p> \/\/Delay for some timefunction delay(){ static $sync_delay = null;\t if($sync_delay == null) {\t$sync_delay = get_option('sync_delay'); }\t echo \"Delaying for $sync_delay seconds...\"; sleep($sync_delay); echo \"Done \";}<\/pre> 17. Don't use the $_SESSION variable directly Some simple examples are :<\/p> $_SESSION['username'] = $username;$username = $_SESSION['username'];<\/pre> But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain.<\/p> Hence use application specific keys with wrapper functions :<\/p> define('APP_ID' , 'abc_corp_ecommerce');\/\/Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}\/\/Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;}<\/pre> 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like :<\/p> function utility_a(){ \/\/This function does a utility thing like string processing}function utility_b(){ \/\/This function does nother utility thing like database processing}function utility_c(){ \/\/This function is ...}<\/pre> And you use the function throughout your application freely. You may want to wrap them into a class as static functions :<\/p> class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}\/\/and call them as $a = Utility::utility_a();$b = Utility::utility_b();<\/pre> One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else.<\/p> 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++;<\/pre> Its absolutely a WASTE.<\/p> Write<\/p> if($a == true){ $a_count++;}<\/pre> Dont try to make your code shorter by eating up syntax. Rather make your logic shorter.<\/p> Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this :<\/p> foreach($arr as $c => $v){\t$arr[$c] = trim($v);}<\/pre> But it can more cleaner with array_map :<\/p> $arr = array_map('trim' , $arr);<\/pre> This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more.<\/p> 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters.<\/p> The php filter extension provides simple way to validate or check values as being a valid 'something'.<\/p> 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate'];<\/pre> Its a good habit.<\/p> 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose<\/p> 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded :<\/p> $db_records_in_array_format; \/\/This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; \/\/2MB moresome_function($cc); \/\/Another 2MB ?<\/pre> The above thing is common when importing a csv file or exporting table to a csv file<\/p> Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays.<\/p> Consider passing them by reference , or storing them in a class variable :<\/p> $a = get_large_array();pass_to_function(&$a);<\/pre> by doing this the same variable (and not its copy) will be available to the function. Check documentation<\/p> class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { \/\/process $this->a }}<\/pre> unset them as soon as possible , so that memory is freed and rest of the script can relax.<\/p> Here is a simple demonstration of how assign by reference can save memory in some cases<\/p> ';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() \/ 1000000 . '';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() \/ 1000000 . '';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() \/ 1000000 . '';<\/pre> The output on a typical php 5.4 machine is :<\/p> Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 <\/p> So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more.<\/p> 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this :<\/p> function add_to_cart(){ $db = new Database(); $db->query(\"INSERT INTO cart .....\");}function empty_cart(){ $db = new Database(); $db->query(\"DELETE FROM cart .....\");}<\/pre> Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory.<\/p> Use the singleton pattern for special cases like database connection.<\/p> 26. Avoid direct SQL query , abstract it $query = \"INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')\";$db->query($query); \/\/call to mysqli_query()<\/pre> The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like:<\/p> All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord<\/p> It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries.<\/p> A very simple example of an activerecord insert function can be like this :<\/p> function insert_record($table_name , $data){ foreach($data as $key => $value) {\t\/\/mysqli_real_escape_string $data[$key] = $db->mres($value); }\t\t $fields = implode(',' , array_keys($data)); $values = \"'\" . implode(\"','\" , array_values($data)) . \"'\"; \/\/Final query\t $query = \"INSERT INTO {$table}($fields) VALUES($values)\";\t\t return $db->query($query);}\/\/data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);\/\/perform the INSERT queryinsert_record('users' , $data);<\/pre> The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse).<\/p> This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise.<\/p> 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again.<\/p> Benefits :<\/p> Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue.<\/p> Storing session in database makes many other things easier like:<\/p> Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines\/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example :<\/p> <\/head> <\/body><\/html><\/pre> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories.<\/p> Lets take an example<\/p> www.domain.com\/store\/home.php www.domain.com\/store\/products\/ipad.php<\/p> In home.php the following can be written :<\/p> Home<\/a>Ipad<\/a><\/pre> But in ipad.php the links have to be like this :<\/p> Home<\/a>Ipad<\/a><\/pre> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag.<\/p> <\/head>Home<\/a>Ipad<\/a><\/body><\/html><\/pre> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products\/ipad.php<\/p> 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing.<\/p> ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT);<\/pre> On production , the display should be disabled.<\/p> ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark.<\/p> After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set.<\/p> ini_set('log_errors' , '1');ini_set('error_log' , '\/path\/to\/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> Note :<\/p> 1. The path '\/path\/to\/errors.txt' should be writable by the web server for errors to be logged there.<\/p> 2. A separate error file is specified , otherwise all logs would go inside the apache\/web server error log and get mixed up with other apache errors.<\/p> 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver).<\/p> 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like \/var\/log dont have to searched.<\/p> 5. Dont set error_reporting to 0. It will not log anything then.<\/p> Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file.<\/p> Set 'display_errors=On' in php.ini on development machine<\/p> On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page.<\/p> Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work.<\/p> Set 'display_errors=Off' in php.ini on production machine<\/p> Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away.<\/p> 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results.<\/p> On a 64 bit machine you can see such output.<\/p> $ php -aInteractive shellphp > echo strtotime(\"0000-00-00 00:00:00\");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600<\/pre> But on a 32 bit machine all of them would give bool(false). Check here for more.<\/p> What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines.<\/p> 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this :<\/p> set_time_limit(30);\/\/Rest of the code<\/pre> It may not always work. Any execution that happens outside the script via system calls\/os functions like socket operations, database operations etc. will not be under control of set_time_limit.<\/p> So if a database operation takes lot of time or \"hangs\" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time.<\/p> 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it.<\/p> A better solution :<\/p> \/**\tMethod to execute a command in the terminal\tUses :\t1. system\t2. passthru\t3. exec\t4. shell_exec*\/function terminal($command){\t\/\/system\tif(function_exists('system'))\t{\t\tob_start();\t\tsystem($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/passthru\telse if(function_exists('passthru'))\t{\t\tob_start();\t\tpassthru($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/exec\telse if(function_exists('exec'))\t{\t\texec($command , $output , $return_var);\t\t$output = implode(\"\\n\" , $output);\t}\t\/\/shell_exec\telse if(function_exists('shell_exec'))\t{\t\t$output = shell_exec($command) ;\t}\telse\t{\t\t$output = 'Command execution not possible on this system';\t\t$return_var = 1;\t}\treturn array('output' => $output , 'status' => $return_var);}terminal('ls');<\/pre> The above function will execute the shell command using whichever function is available , keeping your code consistent.<\/p> 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user.<\/p> 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise.<\/p> Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind.<\/p> 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily.<\/p> Few popular libraries are :<\/p> mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference.<\/p> 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code.<\/p> Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community.<\/p> They contain user feedback, expert advice and useful code snippets. So check them out.<\/p> 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!!<\/p> 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc.<\/p> The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more<\/p> 1. Codeigniter 2. WordPress 3. Joomla CMS<\/p> 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment.<\/p> Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster.<\/p> Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free.<\/p> "} 社區(qū) 文章 合集 問答 學習 課程 編程詞典 工具庫 開發(fā)工具 網(wǎng)站源碼 PHP 庫 JS特效 網(wǎng)站素材 擴展插件 AI工具 休閑 游戲下載 游戲教程 簡體中文 簡體中文 English 繁體中文 日本語 ??? Melayu Fran?ais Deutsch Login singup 首頁 后端開發(fā) php教程 40+ Useful Php tips for beginners ? Part 1 40+ Useful Php tips for beginners ? Part 1 WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB Jun 23, 2016 pm 02:37 PM PHP學習指南 http://www.binarytides.com/category/php-2/tutorial/ In this series we are going to look into some useful tips and techniques that can be used to improve and optimise your php code. Note that these php tips are meant for beginners and not those who are already using mvc frameworks etc. The Techniques 1. Do not use relative paths , instead define a ROOT path Its quite common to see such lines : require_once('http://www.cnblogs.com/lib/some_class.php'); This approach has many drawbacks : It first searches for directories specified in the include paths of php , then looks from the current directory. So many directories are checked. When a script is included by another script in a different directory , its base directory changes to that of the including script. Another issue , is that when a script is being run from cron , it may not have its parent directory as the working directory. So its a good idea to have absolute paths : define('ROOT' , '/var/www/project/');require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code Now this is an absolute path and will always stay constant. But we can improve this further. The directory /var/www/project can change , so do we change it everytime ? No instead we make it portable using magic constants like __FILE__ . Take a closer look : //suppose your script is /var/www/project/index.php//Then __FILE__ will always have that full path.define('ROOT' , pathinfo(__FILE__, PATHINFO_DIRNAME));require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code So now even if you shift your project to a different directory , like moving it to an online server , the same code will run without any changes. 2. Dont use require , include , require_once or include_once Your script could be including various files on top , like class libraries , files for utility and helper functions etc like this : require_once('lib/Database.php');require_once('lib/Mail.php');require_once('helpers/utitlity_functions.php'); This is rather primitive. The code needs to be more flexible. Write up helper functions to include things more easily. Lets take an example : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); require_once( $path ); }load_class('Database');load_class('Mail'); See any difference ? You must. It does not need any more explanation. You can improve this further if you wish to like this : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); if(file_exists($path)) { require_once( $path ); }} There are a lot of things that can be done with this : Search multiple directories for the same class file. Change the directory containing class files easily , without breaking the code anywhere. Use similar functions for loading files that contain helper functions , html content etc. 3. Maintain debugging environment in your application During development we echo database queries , dump variables which are creating problems , and then once the problem is solved , we comment them or erase them. But its a good idea to let everything stay and help in the long run On your development machine you can do this : define('ENVIRONMENT' , 'development');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } And on the server you can do this : define('ENVIRONMENT' , 'production');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } 4. Propagate status messages via session Status messages are those messages that are generated after doing a task. <?phpif($wrong_username || $wrong_password){ $msg = 'Invalid username or password';}?><html><body><?php echo $msg; ?><form>...</form></body></html> Code like that is common. Using variables to show status messages has limitations. They cannot be send via redirects (unless you propagate them as GET variables to the next script , which is very silly). In large scripts there might be multiple messages etc. Best way is to use session to propagate them (even if on same page). For this there has to be a session_start on every page. function set_flash($msg){ $_SESSION['message'] = $msg;}function get_flash(){ $msg = $_SESSION['message']; unset($_SESSION['message']); return $msg;} and in your script : <?phpif($wrong_username || $wrong_password){ set_flash('Invalid username or password');}?><html><body>Status is : <?php echo get_flash(); ?><form>...</form></body></html> 5. Make your functions flexible function add_to_cart($item_id , $qty){ $_SESSION['cart'][$item_id] = $qty;}add_to_cart( 'IPHONE3' , 2 ); When adding a single item you use the above function. When adding multiple items , will you create another function ? NO. Just make the function flexible enough to take different kinds of parameters. Have a closer look : function add_to_cart($item_id , $qty){ if(!is_array($item_id)) { $_SESSION['cart'][$item_id] = $qty; } else { foreach($item_id as $i_id => $qty) { $_SESSION['cart'][$i_id] = $qty; } }}add_to_cart( 'IPHONE3' , 2 );add_to_cart( array('IPHONE3' => 2 , 'IPAD' => 5) ); So now the same function can accept different kinds of output. The above can be applied in lots of places to make your code more agile. 6. Omit the closing php tag if it is the last thing in a script I wonder why this tip is omitted from so many blog posts on php tips. <?phpecho "Hello";//Now dont close this tag This will save you lots of problem. Lets take an example : A class file super_class.php <?phpclass super_class{ function super_function() { //super code }}?>//super extra character after the closing tag Now index.php require_once('super_class.php');//echo an image or pdf , or set the cookies or session data And you will get Headers already send error. Why ? because the "super extra character" has been echoed , and all headers went along with that. Now you start debugging. You may have to waste many hours to find the super extra space. Hence make it a habit to omit the closing tag : <?phpclass super_class{ function super_function() { //super code }}//No closing tag Thats better. 7. Collect all output at one place , and output at one shot to the browser This is called output buffering. Lets say you have been echoing content from different functions like this : function print_header(){ echo "<div id='header'>Site Log and Login links</div>";}function print_footer(){ echo "<div id='footer'>Site was made by me</div>";}print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}print_footer(); Instead of doing like that , first collect all output in one place. You can either store it inside variables in the functions or use ob_start and ob_end_clean. So now it should look like function print_header(){ $o = "<div id='header'>Site Log and Login links</div>"; return $o;}function print_footer(){ $o = "<div id='footer'>Site was made by me</div>"; return $o;}echo print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}echo print_footer(); So why should you do output buffering : You can change the output just before sending it to browser if you need to. Think about doing some str_replaces , or may be preg_replaces or may be adding some extra html at the end like profiler/debugger output Its a bad idea to send output to browser and do php processing at the same time. Have you ever seen a website where there is a Fatal error in the sidebar or in a box in the middle of the screen. You know why that happens ? Because processing and output are being mixed. 8. Send correct mime types via header when outputting non-html content Lets echo some xml. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataecho $xml; Works fine. But it needs some improvement. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataheader("content-type: text/xml");echo $xml; Note that header line. That line tells the browser that the content is xml content. So the browser can handle it correctly. Many javascript libraries also rely on header information. Similarly for javascript , css , jpg image , png image : Javascript header("content-type: application/x-javascript");echo "var a = 10"; CSS header("content-type: text/css");echo "#div id { background:#000; }"; 9. Set the correct character encoding for a mysql connection Ever faced a problem that unicode/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation. $host = 'localhost';$username = 'root';$password = 'super_secret';//Attempt to connect to database$c = mysqli_connect($host , $username, $password); //Check connection validityif (!$c) { die ("Could not connect to the database host: <br />". mysqli_connect_error());} //Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){ die('mysqli_set_charset() failed');} Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application. Otherwise what will happen ? You will see lots of boxes and ???????? in non english text. 10. Use htmlentities with the correct characterset option Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc. $value = htmlentities($this->value , ENT_QUOTES , 'UTF-8'); Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual. 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php. Use apache mod_gzip/mod_deflate to compress content via the .htaccess file. 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php. $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= "'$image' ,";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;//Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,]; Be smart. use json_encode : $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;//Output is : var images = ["myself.png","friends.png","colleagues.png"] Isn't that neat ? 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of "debugging" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on. Make sure that your application is as intelligent as possible and reports the most important information in the shortest time. $contents = "All the content";$file_path = "/var/www/project/content.txt";file_put_contents($file_path , $contents); That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons : Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file. $contents = "All the content";$dir = '/var/www/project';$file_path = $dir . "/content.txt";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die("Directory $dir is not writable, or does not exist. Please check");} By doing this you get the accurate information that where is a file write failing and why 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are "accessible" outside. Otherwise for example the files may be created by "php" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on. // Read and write for owner, read for everybody elsechmod("/somedir/somefile", 0644);// Everything for owner, read and execute for otherschmod("/somedir/somefile", 0755); 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ //Save the things} The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this : if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ //Save the things} Now you are free from the value the submit button 16. Use static variables in function where they always have same value //Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} Instead use static variables as : //Delay for some timefunction delay(){ static $sync_delay = null; if($sync_delay == null) { $sync_delay = get_option('sync_delay'); } echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} 17. Don't use the $_SESSION variable directly Some simple examples are : $_SESSION['username'] = $username;$username = $_SESSION['username']; But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain. Hence use application specific keys with wrapper functions : define('APP_ID' , 'abc_corp_ecommerce');//Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}//Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;} 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like : function utility_a(){ //This function does a utility thing like string processing}function utility_b(){ //This function does nother utility thing like database processing}function utility_c(){ //This function is ...} And you use the function throughout your application freely. You may want to wrap them into a class as static functions : class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}//and call them as $a = Utility::utility_a();$b = Utility::utility_b(); One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else. 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++; Its absolutely a WASTE. Write if($a == true){ $a_count++;} Dont try to make your code shorter by eating up syntax. Rather make your logic shorter. Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this : foreach($arr as $c => $v){ $arr[$c] = trim($v);} But it can more cleaner with array_map : $arr = array_map('trim' , $arr); This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more. 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters. The php filter extension provides simple way to validate or check values as being a valid 'something'. 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate']; Its a good habit. 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded : $db_records_in_array_format; //This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; //2MB moresome_function($cc); //Another 2MB ? The above thing is common when importing a csv file or exporting table to a csv file Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays. Consider passing them by reference , or storing them in a class variable : $a = get_large_array();pass_to_function(&$a); by doing this the same variable (and not its copy) will be available to the function. Check documentation class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { //process $this->a }} unset them as soon as possible , so that memory is freed and rest of the script can relax. Here is a simple demonstration of how assign by reference can save memory in some cases <?phpini_set('display_errors' , true);error_reporting(E_ALL);$a = array();for($i = 0; $i < 100000 ; $i++){ $a[$i] = 'A'.$i;}echo 'Memory usage in MB : '. memory_get_usage() / 1000000 . '<br />';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() / 1000000 . '<br />';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() / 1000000 . '<br />';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() / 1000000 . '<br />'; The output on a typical php 5.4 machine is : Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more. 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this : function add_to_cart(){ $db = new Database(); $db->query("INSERT INTO cart .....");}function empty_cart(){ $db = new Database(); $db->query("DELETE FROM cart .....");} Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory. Use the singleton pattern for special cases like database connection. 26. Avoid direct SQL query , abstract it $query = "INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')";$db->query($query); //call to mysqli_query() The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like: All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries. A very simple example of an activerecord insert function can be like this : function insert_record($table_name , $data){ foreach($data as $key => $value) { //mysqli_real_escape_string $data[$key] = $db->mres($value); } $fields = implode(',' , array_keys($data)); $values = "'" . implode("','" , array_values($data)) . "'"; //Final query $query = "INSERT INTO {$table}($fields) VALUES($values)"; return $db->query($query);}//data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);//perform the INSERT queryinsert_record('users' , $data); The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse). This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise. 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again. Benefits : Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue. Storing session in database makes many other things easier like: Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example : <head> <base href="http://www.domain.com/store/"></head><body> <img src="/static/imghw/default1.png" data-src="happy.jpg" class="lazy" / alt="40+ Useful Php tips for beginners ? Part 1" ></body></html> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories. Lets take an example www.domain.com/store/home.php www.domain.com/store/products/ipad.php In home.php the following can be written : <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> But in ipad.php the links have to be like this : <a href="../home.php">Home</a><a href="ipad.php">Ipad</a> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag. <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products/ipad.php 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing. ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT); On production , the display should be disabled. ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark. After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set. ini_set('log_errors' , '1');ini_set('error_log' , '/path/to/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); Note : 1. The path '/path/to/errors.txt' should be writable by the web server for errors to be logged there. 2. A separate error file is specified , otherwise all logs would go inside the apache/web server error log and get mixed up with other apache errors. 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver). 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like /var/log dont have to searched. 5. Dont set error_reporting to 0. It will not log anything then. Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file. Set 'display_errors=On' in php.ini on development machine On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page. Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work. Set 'display_errors=Off' in php.ini on production machine Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away. 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results. On a 64 bit machine you can see such output. $ php -aInteractive shellphp > echo strtotime("0000-00-00 00:00:00");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600 But on a 32 bit machine all of them would give bool(false). Check here for more. What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines. 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this : set_time_limit(30);//Rest of the code It may not always work. Any execution that happens outside the script via system calls/os functions like socket operations, database operations etc. will not be under control of set_time_limit. So if a database operation takes lot of time or "hangs" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time. 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it. A better solution : /** Method to execute a command in the terminal Uses : 1. system 2. passthru 3. exec 4. shell_exec*/function terminal($command){ //system if(function_exists('system')) { ob_start(); system($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //passthru else if(function_exists('passthru')) { ob_start(); passthru($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //exec else if(function_exists('exec')) { exec($command , $output , $return_var); $output = implode("\n" , $output); } //shell_exec else if(function_exists('shell_exec')) { $output = shell_exec($command) ; } else { $output = 'Command execution not possible on this system'; $return_var = 1; } return array('output' => $output , 'status' => $return_var);}terminal('ls'); The above function will execute the shell command using whichever function is available , keeping your code consistent. 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user. 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise. Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind. 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily. Few popular libraries are : mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference. 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code. Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community. They contain user feedback, expert advice and useful code snippets. So check them out. 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!! 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc. The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more 1. Codeigniter 2. WordPress 3. Joomla CMS 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment. Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster. Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free. 本站聲明 本文內(nèi)容由網(wǎng)友自發(fā)貢獻,版權(quán)歸原作者所有,本站不承擔相應(yīng)法律責任。如您發(fā)現(xiàn)有涉嫌抄襲侵權(quán)的內(nèi)容,請聯(lián)系admin@php.cn 熱AI工具 Undress AI Tool 免費脫衣服圖片 Undresser.AI Undress 人工智能驅(qū)動的應(yīng)用程序,用于創(chuàng)建逼真的裸體照片 AI Clothes Remover 用于從照片中去除衣服的在線人工智能工具。 Clothoff.io AI脫衣機 Video Face Swap 使用我們完全免費的人工智能換臉工具輕松在任何視頻中換臉! 顯示更多 熱門文章 指南:恒星刀片保存文件位置/保存文件丟失/不保存 4 周前 By DDD Oguri Cap Build Guide |漂亮的德比志 2 周前 By Jack chen Agnes Tachyon Build Guide |漂亮的德比志 1 周前 By Jack chen 沙丘:覺醒 - 高級行星學家Quest演練 4 周前 By Jack chen 約會一切:德克和哈珀關(guān)系指南 4 周前 By Jack chen 顯示更多 熱工具 記事本++7.3.1 好用且免費的代碼編輯器 SublimeText3漢化版 中文版,非常好用 禪工作室 13.0.1 功能強大的PHP集成開發(fā)環(huán)境 Dreamweaver CS6 視覺化網(wǎng)頁開發(fā)工具 SublimeText3 Mac版 神級代碼編輯軟件(SublimeText3) 顯示更多 熱門話題 gmail郵箱登陸入口在哪里 8638 17 Java教程 1783 16 CakePHP 教程 1728 56 Laravel 教程 1578 28 PHP教程 1442 31 顯示更多 Related knowledge 如何在PHP中實施身份驗證和授權(quán)? Jun 20, 2025 am 01:03 AM tosecurelyhandleauthenticationandationallizationInphp,lofterTheSesteps:1.AlwaysHashPasswordSwithPassword_hash()andverifyusingspasspassword_verify(),usepreparedStatatementStopreventsqlineptions,andStoreSeruserDatain usseruserDatain $ _sessiveferterlogin.2.implementrole-2.imaccessccsccccccccccccccccccccccccc. 如何在PHP中安全地處理文件上傳? Jun 19, 2025 am 01:05 AM 要安全處理PHP中的文件上傳,核心在于驗證文件類型、重命名文件并限制權(quán)限。1.使用finfo_file()檢查真實MIME類型,僅允許特定類型如image/jpeg;2.用uniqid()生成隨機文件名,存儲至非Web根目錄;3.通過php.ini和HTML表單限制文件大小,設(shè)置目錄權(quán)限為0755;4.使用ClamAV掃描惡意軟件,增強安全性。這些步驟有效防止安全漏洞,確保文件上傳過程安全可靠。 PHP中==(松散比較)和===(嚴格的比較)之間有什么區(qū)別? Jun 19, 2025 am 01:07 AM 在PHP中,==與===的主要區(qū)別在于類型檢查的嚴格程度。==在比較前會進行類型轉(zhuǎn)換,例如5=="5"返回true,而===要求值和類型都相同才會返回true,例如5==="5"返回false。使用場景上,===更安全應(yīng)優(yōu)先使用,==僅在需要類型轉(zhuǎn)換時使用。 如何在PHP( - , *, /,%)中執(zhí)行算術(shù)操作? Jun 19, 2025 pm 05:13 PM PHP中使用基本數(shù)學運算的方法如下:1.加法用 號,支持整數(shù)和浮點數(shù),也可用于變量,字符串數(shù)字會自動轉(zhuǎn)換但不推薦依賴;2.減法用-號,變量同理,類型轉(zhuǎn)換同樣適用;3.乘法用*號,適用于數(shù)字及類似字符串;4.除法用/號,需避免除以零,并注意結(jié)果可能是浮點數(shù);5.取模用%號,可用于判斷奇偶數(shù),處理負數(shù)時余數(shù)符號與被除數(shù)一致。正確使用這些運算符的關(guān)鍵在于確保數(shù)據(jù)類型清晰并處理好邊界情況。 如何與PHP的NOSQL數(shù)據(jù)庫(例如MongoDB,Redis)進行交互? Jun 19, 2025 am 01:07 AM 是的,PHP可以通過特定擴展或庫與MongoDB和Redis等NoSQL數(shù)據(jù)庫交互。首先,使用MongoDBPHP驅(qū)動(通過PECL或Composer安裝)創(chuàng)建客戶端實例并操作數(shù)據(jù)庫及集合,支持插入、查詢、聚合等操作;其次,使用Predis庫或phpredis擴展連接Redis,執(zhí)行鍵值設(shè)置與獲取,推薦phpredis用于高性能場景,Predis則便于快速部署;兩者均適用于生產(chǎn)環(huán)境且文檔完善。 我如何了解最新的PHP開發(fā)和最佳實踐? Jun 23, 2025 am 12:56 AM TostaycurrentwithPHPdevelopmentsandbestpractices,followkeynewssourceslikePHP.netandPHPWeekly,engagewithcommunitiesonforumsandconferences,keeptoolingupdatedandgraduallyadoptnewfeatures,andreadorcontributetoopensourceprojects.First,followreliablesource 什么是PHP,為什么它用于Web開發(fā)? Jun 23, 2025 am 12:55 AM PHPbecamepopularforwebdevelopmentduetoitseaseoflearning,seamlessintegrationwithHTML,widespreadhostingsupport,andalargeecosystemincludingframeworkslikeLaravelandCMSplatformslikeWordPress.Itexcelsinhandlingformsubmissions,managingusersessions,interacti 如何設(shè)置PHP時區(qū)? Jun 25, 2025 am 01:00 AM tosetTherightTimeZoneInphp,restate_default_timezone_set()functionAtthestArtofyourscriptWithavalIdidentIdentifiersuchas'america/new_york'.1.usedate_default_default_timezone_set_set() See all articles
Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application.<\/p>
Otherwise what will happen ? You will see lots of boxes and ???????? in non english text.<\/p> 10. Use htmlentities with the correct characterset option
Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc.<\/p>
$value = htmlentities($this->value , ENT_QUOTES , 'UTF-8');<\/pre> Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual.<\/p> 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php.<\/p> Use apache mod_gzip\/mod_deflate to compress content via the .htaccess file.<\/p> 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php.<\/p> $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= \"'$image' ,\";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;\/\/Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,];<\/pre> Be smart. use json_encode :<\/p> $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;\/\/Output is : var images = [\"myself.png\",\"friends.png\",\"colleagues.png\"]<\/pre> Isn't that neat ?<\/p> 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of \"debugging\" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on.<\/p> Make sure that your application is as intelligent as possible and reports the most important information in the shortest time.<\/p> $contents = \"All the content\";$file_path = \"\/var\/www\/project\/content.txt\";file_put_contents($file_path , $contents);<\/pre> That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons :<\/p> Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file.<\/p> $contents = \"All the content\";$dir = '\/var\/www\/project';$file_path = $dir . \"\/content.txt\";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die(\"Directory $dir is not writable, or does not exist. Please check\");}<\/pre> By doing this you get the accurate information that where is a file write failing and why<\/p> 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are \"accessible\" outside. Otherwise for example the files may be created by \"php\" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on.<\/p> \/\/ Read and write for owner, read for everybody elsechmod(\"\/somedir\/somefile\", 0644);\/\/ Everything for owner, read and execute for otherschmod(\"\/somedir\/somefile\", 0755);<\/pre> 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ \/\/Save the things}<\/pre> The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this :<\/p> if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ \/\/Save the things}<\/pre> Now you are free from the value the submit button<\/p> 16. Use static variables in function where they always have same value \/\/Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); \t echo \"Delaying for $sync_delay seconds...\"; sleep($sync_delay); echo \"Done \";}<\/pre> Instead use static variables as :<\/p> \/\/Delay for some timefunction delay(){ static $sync_delay = null;\t if($sync_delay == null) {\t$sync_delay = get_option('sync_delay'); }\t echo \"Delaying for $sync_delay seconds...\"; sleep($sync_delay); echo \"Done \";}<\/pre> 17. Don't use the $_SESSION variable directly Some simple examples are :<\/p> $_SESSION['username'] = $username;$username = $_SESSION['username'];<\/pre> But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain.<\/p> Hence use application specific keys with wrapper functions :<\/p> define('APP_ID' , 'abc_corp_ecommerce');\/\/Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}\/\/Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;}<\/pre> 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like :<\/p> function utility_a(){ \/\/This function does a utility thing like string processing}function utility_b(){ \/\/This function does nother utility thing like database processing}function utility_c(){ \/\/This function is ...}<\/pre> And you use the function throughout your application freely. You may want to wrap them into a class as static functions :<\/p> class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}\/\/and call them as $a = Utility::utility_a();$b = Utility::utility_b();<\/pre> One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else.<\/p> 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++;<\/pre> Its absolutely a WASTE.<\/p> Write<\/p> if($a == true){ $a_count++;}<\/pre> Dont try to make your code shorter by eating up syntax. Rather make your logic shorter.<\/p> Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this :<\/p> foreach($arr as $c => $v){\t$arr[$c] = trim($v);}<\/pre> But it can more cleaner with array_map :<\/p> $arr = array_map('trim' , $arr);<\/pre> This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more.<\/p> 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters.<\/p> The php filter extension provides simple way to validate or check values as being a valid 'something'.<\/p> 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate'];<\/pre> Its a good habit.<\/p> 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose<\/p> 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded :<\/p> $db_records_in_array_format; \/\/This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; \/\/2MB moresome_function($cc); \/\/Another 2MB ?<\/pre> The above thing is common when importing a csv file or exporting table to a csv file<\/p> Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays.<\/p> Consider passing them by reference , or storing them in a class variable :<\/p> $a = get_large_array();pass_to_function(&$a);<\/pre> by doing this the same variable (and not its copy) will be available to the function. Check documentation<\/p> class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { \/\/process $this->a }}<\/pre> unset them as soon as possible , so that memory is freed and rest of the script can relax.<\/p> Here is a simple demonstration of how assign by reference can save memory in some cases<\/p> ';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() \/ 1000000 . '';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() \/ 1000000 . '';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() \/ 1000000 . '';<\/pre> The output on a typical php 5.4 machine is :<\/p> Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 <\/p> So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more.<\/p> 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this :<\/p> function add_to_cart(){ $db = new Database(); $db->query(\"INSERT INTO cart .....\");}function empty_cart(){ $db = new Database(); $db->query(\"DELETE FROM cart .....\");}<\/pre> Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory.<\/p> Use the singleton pattern for special cases like database connection.<\/p> 26. Avoid direct SQL query , abstract it $query = \"INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')\";$db->query($query); \/\/call to mysqli_query()<\/pre> The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like:<\/p> All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord<\/p> It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries.<\/p> A very simple example of an activerecord insert function can be like this :<\/p> function insert_record($table_name , $data){ foreach($data as $key => $value) {\t\/\/mysqli_real_escape_string $data[$key] = $db->mres($value); }\t\t $fields = implode(',' , array_keys($data)); $values = \"'\" . implode(\"','\" , array_values($data)) . \"'\"; \/\/Final query\t $query = \"INSERT INTO {$table}($fields) VALUES($values)\";\t\t return $db->query($query);}\/\/data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);\/\/perform the INSERT queryinsert_record('users' , $data);<\/pre> The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse).<\/p> This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise.<\/p> 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again.<\/p> Benefits :<\/p> Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue.<\/p> Storing session in database makes many other things easier like:<\/p> Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines\/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example :<\/p> <\/head> <\/body><\/html><\/pre> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories.<\/p> Lets take an example<\/p> www.domain.com\/store\/home.php www.domain.com\/store\/products\/ipad.php<\/p> In home.php the following can be written :<\/p> Home<\/a>Ipad<\/a><\/pre> But in ipad.php the links have to be like this :<\/p> Home<\/a>Ipad<\/a><\/pre> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag.<\/p> <\/head>Home<\/a>Ipad<\/a><\/body><\/html><\/pre> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products\/ipad.php<\/p> 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing.<\/p> ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT);<\/pre> On production , the display should be disabled.<\/p> ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark.<\/p> After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set.<\/p> ini_set('log_errors' , '1');ini_set('error_log' , '\/path\/to\/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> Note :<\/p> 1. The path '\/path\/to\/errors.txt' should be writable by the web server for errors to be logged there.<\/p> 2. A separate error file is specified , otherwise all logs would go inside the apache\/web server error log and get mixed up with other apache errors.<\/p> 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver).<\/p> 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like \/var\/log dont have to searched.<\/p> 5. Dont set error_reporting to 0. It will not log anything then.<\/p> Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file.<\/p> Set 'display_errors=On' in php.ini on development machine<\/p> On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page.<\/p> Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work.<\/p> Set 'display_errors=Off' in php.ini on production machine<\/p> Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away.<\/p> 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results.<\/p> On a 64 bit machine you can see such output.<\/p> $ php -aInteractive shellphp > echo strtotime(\"0000-00-00 00:00:00\");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600<\/pre> But on a 32 bit machine all of them would give bool(false). Check here for more.<\/p> What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines.<\/p> 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this :<\/p> set_time_limit(30);\/\/Rest of the code<\/pre> It may not always work. Any execution that happens outside the script via system calls\/os functions like socket operations, database operations etc. will not be under control of set_time_limit.<\/p> So if a database operation takes lot of time or \"hangs\" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time.<\/p> 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it.<\/p> A better solution :<\/p> \/**\tMethod to execute a command in the terminal\tUses :\t1. system\t2. passthru\t3. exec\t4. shell_exec*\/function terminal($command){\t\/\/system\tif(function_exists('system'))\t{\t\tob_start();\t\tsystem($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/passthru\telse if(function_exists('passthru'))\t{\t\tob_start();\t\tpassthru($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/exec\telse if(function_exists('exec'))\t{\t\texec($command , $output , $return_var);\t\t$output = implode(\"\\n\" , $output);\t}\t\/\/shell_exec\telse if(function_exists('shell_exec'))\t{\t\t$output = shell_exec($command) ;\t}\telse\t{\t\t$output = 'Command execution not possible on this system';\t\t$return_var = 1;\t}\treturn array('output' => $output , 'status' => $return_var);}terminal('ls');<\/pre> The above function will execute the shell command using whichever function is available , keeping your code consistent.<\/p> 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user.<\/p> 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise.<\/p> Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind.<\/p> 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily.<\/p> Few popular libraries are :<\/p> mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference.<\/p> 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code.<\/p> Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community.<\/p> They contain user feedback, expert advice and useful code snippets. So check them out.<\/p> 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!!<\/p> 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc.<\/p> The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more<\/p> 1. Codeigniter 2. WordPress 3. Joomla CMS<\/p> 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment.<\/p> Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster.<\/p> Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free.<\/p> "} 社區(qū) 文章 合集 問答 學習 課程 編程詞典 工具庫 開發(fā)工具 網(wǎng)站源碼 PHP 庫 JS特效 網(wǎng)站素材 擴展插件 AI工具 休閑 游戲下載 游戲教程 簡體中文 簡體中文 English 繁體中文 日本語 ??? Melayu Fran?ais Deutsch Login singup 首頁 后端開發(fā) php教程 40+ Useful Php tips for beginners ? Part 1 40+ Useful Php tips for beginners ? Part 1 WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB Jun 23, 2016 pm 02:37 PM PHP學習指南 http://www.binarytides.com/category/php-2/tutorial/ In this series we are going to look into some useful tips and techniques that can be used to improve and optimise your php code. Note that these php tips are meant for beginners and not those who are already using mvc frameworks etc. The Techniques 1. Do not use relative paths , instead define a ROOT path Its quite common to see such lines : require_once('http://www.cnblogs.com/lib/some_class.php'); This approach has many drawbacks : It first searches for directories specified in the include paths of php , then looks from the current directory. So many directories are checked. When a script is included by another script in a different directory , its base directory changes to that of the including script. Another issue , is that when a script is being run from cron , it may not have its parent directory as the working directory. So its a good idea to have absolute paths : define('ROOT' , '/var/www/project/');require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code Now this is an absolute path and will always stay constant. But we can improve this further. The directory /var/www/project can change , so do we change it everytime ? No instead we make it portable using magic constants like __FILE__ . Take a closer look : //suppose your script is /var/www/project/index.php//Then __FILE__ will always have that full path.define('ROOT' , pathinfo(__FILE__, PATHINFO_DIRNAME));require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code So now even if you shift your project to a different directory , like moving it to an online server , the same code will run without any changes. 2. Dont use require , include , require_once or include_once Your script could be including various files on top , like class libraries , files for utility and helper functions etc like this : require_once('lib/Database.php');require_once('lib/Mail.php');require_once('helpers/utitlity_functions.php'); This is rather primitive. The code needs to be more flexible. Write up helper functions to include things more easily. Lets take an example : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); require_once( $path ); }load_class('Database');load_class('Mail'); See any difference ? You must. It does not need any more explanation. You can improve this further if you wish to like this : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); if(file_exists($path)) { require_once( $path ); }} There are a lot of things that can be done with this : Search multiple directories for the same class file. Change the directory containing class files easily , without breaking the code anywhere. Use similar functions for loading files that contain helper functions , html content etc. 3. Maintain debugging environment in your application During development we echo database queries , dump variables which are creating problems , and then once the problem is solved , we comment them or erase them. But its a good idea to let everything stay and help in the long run On your development machine you can do this : define('ENVIRONMENT' , 'development');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } And on the server you can do this : define('ENVIRONMENT' , 'production');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } 4. Propagate status messages via session Status messages are those messages that are generated after doing a task. <?phpif($wrong_username || $wrong_password){ $msg = 'Invalid username or password';}?><html><body><?php echo $msg; ?><form>...</form></body></html> Code like that is common. Using variables to show status messages has limitations. They cannot be send via redirects (unless you propagate them as GET variables to the next script , which is very silly). In large scripts there might be multiple messages etc. Best way is to use session to propagate them (even if on same page). For this there has to be a session_start on every page. function set_flash($msg){ $_SESSION['message'] = $msg;}function get_flash(){ $msg = $_SESSION['message']; unset($_SESSION['message']); return $msg;} and in your script : <?phpif($wrong_username || $wrong_password){ set_flash('Invalid username or password');}?><html><body>Status is : <?php echo get_flash(); ?><form>...</form></body></html> 5. Make your functions flexible function add_to_cart($item_id , $qty){ $_SESSION['cart'][$item_id] = $qty;}add_to_cart( 'IPHONE3' , 2 ); When adding a single item you use the above function. When adding multiple items , will you create another function ? NO. Just make the function flexible enough to take different kinds of parameters. Have a closer look : function add_to_cart($item_id , $qty){ if(!is_array($item_id)) { $_SESSION['cart'][$item_id] = $qty; } else { foreach($item_id as $i_id => $qty) { $_SESSION['cart'][$i_id] = $qty; } }}add_to_cart( 'IPHONE3' , 2 );add_to_cart( array('IPHONE3' => 2 , 'IPAD' => 5) ); So now the same function can accept different kinds of output. The above can be applied in lots of places to make your code more agile. 6. Omit the closing php tag if it is the last thing in a script I wonder why this tip is omitted from so many blog posts on php tips. <?phpecho "Hello";//Now dont close this tag This will save you lots of problem. Lets take an example : A class file super_class.php <?phpclass super_class{ function super_function() { //super code }}?>//super extra character after the closing tag Now index.php require_once('super_class.php');//echo an image or pdf , or set the cookies or session data And you will get Headers already send error. Why ? because the "super extra character" has been echoed , and all headers went along with that. Now you start debugging. You may have to waste many hours to find the super extra space. Hence make it a habit to omit the closing tag : <?phpclass super_class{ function super_function() { //super code }}//No closing tag Thats better. 7. Collect all output at one place , and output at one shot to the browser This is called output buffering. Lets say you have been echoing content from different functions like this : function print_header(){ echo "<div id='header'>Site Log and Login links</div>";}function print_footer(){ echo "<div id='footer'>Site was made by me</div>";}print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}print_footer(); Instead of doing like that , first collect all output in one place. You can either store it inside variables in the functions or use ob_start and ob_end_clean. So now it should look like function print_header(){ $o = "<div id='header'>Site Log and Login links</div>"; return $o;}function print_footer(){ $o = "<div id='footer'>Site was made by me</div>"; return $o;}echo print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}echo print_footer(); So why should you do output buffering : You can change the output just before sending it to browser if you need to. Think about doing some str_replaces , or may be preg_replaces or may be adding some extra html at the end like profiler/debugger output Its a bad idea to send output to browser and do php processing at the same time. Have you ever seen a website where there is a Fatal error in the sidebar or in a box in the middle of the screen. You know why that happens ? Because processing and output are being mixed. 8. Send correct mime types via header when outputting non-html content Lets echo some xml. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataecho $xml; Works fine. But it needs some improvement. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataheader("content-type: text/xml");echo $xml; Note that header line. That line tells the browser that the content is xml content. So the browser can handle it correctly. Many javascript libraries also rely on header information. Similarly for javascript , css , jpg image , png image : Javascript header("content-type: application/x-javascript");echo "var a = 10"; CSS header("content-type: text/css");echo "#div id { background:#000; }"; 9. Set the correct character encoding for a mysql connection Ever faced a problem that unicode/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation. $host = 'localhost';$username = 'root';$password = 'super_secret';//Attempt to connect to database$c = mysqli_connect($host , $username, $password); //Check connection validityif (!$c) { die ("Could not connect to the database host: <br />". mysqli_connect_error());} //Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){ die('mysqli_set_charset() failed');} Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application. Otherwise what will happen ? You will see lots of boxes and ???????? in non english text. 10. Use htmlentities with the correct characterset option Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc. $value = htmlentities($this->value , ENT_QUOTES , 'UTF-8'); Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual. 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php. Use apache mod_gzip/mod_deflate to compress content via the .htaccess file. 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php. $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= "'$image' ,";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;//Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,]; Be smart. use json_encode : $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;//Output is : var images = ["myself.png","friends.png","colleagues.png"] Isn't that neat ? 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of "debugging" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on. Make sure that your application is as intelligent as possible and reports the most important information in the shortest time. $contents = "All the content";$file_path = "/var/www/project/content.txt";file_put_contents($file_path , $contents); That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons : Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file. $contents = "All the content";$dir = '/var/www/project';$file_path = $dir . "/content.txt";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die("Directory $dir is not writable, or does not exist. Please check");} By doing this you get the accurate information that where is a file write failing and why 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are "accessible" outside. Otherwise for example the files may be created by "php" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on. // Read and write for owner, read for everybody elsechmod("/somedir/somefile", 0644);// Everything for owner, read and execute for otherschmod("/somedir/somefile", 0755); 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ //Save the things} The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this : if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ //Save the things} Now you are free from the value the submit button 16. Use static variables in function where they always have same value //Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} Instead use static variables as : //Delay for some timefunction delay(){ static $sync_delay = null; if($sync_delay == null) { $sync_delay = get_option('sync_delay'); } echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} 17. Don't use the $_SESSION variable directly Some simple examples are : $_SESSION['username'] = $username;$username = $_SESSION['username']; But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain. Hence use application specific keys with wrapper functions : define('APP_ID' , 'abc_corp_ecommerce');//Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}//Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;} 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like : function utility_a(){ //This function does a utility thing like string processing}function utility_b(){ //This function does nother utility thing like database processing}function utility_c(){ //This function is ...} And you use the function throughout your application freely. You may want to wrap them into a class as static functions : class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}//and call them as $a = Utility::utility_a();$b = Utility::utility_b(); One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else. 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++; Its absolutely a WASTE. Write if($a == true){ $a_count++;} Dont try to make your code shorter by eating up syntax. Rather make your logic shorter. Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this : foreach($arr as $c => $v){ $arr[$c] = trim($v);} But it can more cleaner with array_map : $arr = array_map('trim' , $arr); This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more. 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters. The php filter extension provides simple way to validate or check values as being a valid 'something'. 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate']; Its a good habit. 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded : $db_records_in_array_format; //This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; //2MB moresome_function($cc); //Another 2MB ? The above thing is common when importing a csv file or exporting table to a csv file Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays. Consider passing them by reference , or storing them in a class variable : $a = get_large_array();pass_to_function(&$a); by doing this the same variable (and not its copy) will be available to the function. Check documentation class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { //process $this->a }} unset them as soon as possible , so that memory is freed and rest of the script can relax. Here is a simple demonstration of how assign by reference can save memory in some cases <?phpini_set('display_errors' , true);error_reporting(E_ALL);$a = array();for($i = 0; $i < 100000 ; $i++){ $a[$i] = 'A'.$i;}echo 'Memory usage in MB : '. memory_get_usage() / 1000000 . '<br />';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() / 1000000 . '<br />';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() / 1000000 . '<br />';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() / 1000000 . '<br />'; The output on a typical php 5.4 machine is : Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more. 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this : function add_to_cart(){ $db = new Database(); $db->query("INSERT INTO cart .....");}function empty_cart(){ $db = new Database(); $db->query("DELETE FROM cart .....");} Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory. Use the singleton pattern for special cases like database connection. 26. Avoid direct SQL query , abstract it $query = "INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')";$db->query($query); //call to mysqli_query() The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like: All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries. A very simple example of an activerecord insert function can be like this : function insert_record($table_name , $data){ foreach($data as $key => $value) { //mysqli_real_escape_string $data[$key] = $db->mres($value); } $fields = implode(',' , array_keys($data)); $values = "'" . implode("','" , array_values($data)) . "'"; //Final query $query = "INSERT INTO {$table}($fields) VALUES($values)"; return $db->query($query);}//data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);//perform the INSERT queryinsert_record('users' , $data); The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse). This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise. 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again. Benefits : Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue. Storing session in database makes many other things easier like: Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example : <head> <base href="http://www.domain.com/store/"></head><body> <img src="/static/imghw/default1.png" data-src="happy.jpg" class="lazy" / alt="40+ Useful Php tips for beginners ? Part 1" ></body></html> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories. Lets take an example www.domain.com/store/home.php www.domain.com/store/products/ipad.php In home.php the following can be written : <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> But in ipad.php the links have to be like this : <a href="../home.php">Home</a><a href="ipad.php">Ipad</a> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag. <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products/ipad.php 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing. ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT); On production , the display should be disabled. ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark. After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set. ini_set('log_errors' , '1');ini_set('error_log' , '/path/to/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); Note : 1. The path '/path/to/errors.txt' should be writable by the web server for errors to be logged there. 2. A separate error file is specified , otherwise all logs would go inside the apache/web server error log and get mixed up with other apache errors. 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver). 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like /var/log dont have to searched. 5. Dont set error_reporting to 0. It will not log anything then. Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file. Set 'display_errors=On' in php.ini on development machine On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page. Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work. Set 'display_errors=Off' in php.ini on production machine Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away. 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results. On a 64 bit machine you can see such output. $ php -aInteractive shellphp > echo strtotime("0000-00-00 00:00:00");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600 But on a 32 bit machine all of them would give bool(false). Check here for more. What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines. 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this : set_time_limit(30);//Rest of the code It may not always work. Any execution that happens outside the script via system calls/os functions like socket operations, database operations etc. will not be under control of set_time_limit. So if a database operation takes lot of time or "hangs" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time. 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it. A better solution : /** Method to execute a command in the terminal Uses : 1. system 2. passthru 3. exec 4. shell_exec*/function terminal($command){ //system if(function_exists('system')) { ob_start(); system($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //passthru else if(function_exists('passthru')) { ob_start(); passthru($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //exec else if(function_exists('exec')) { exec($command , $output , $return_var); $output = implode("\n" , $output); } //shell_exec else if(function_exists('shell_exec')) { $output = shell_exec($command) ; } else { $output = 'Command execution not possible on this system'; $return_var = 1; } return array('output' => $output , 'status' => $return_var);}terminal('ls'); The above function will execute the shell command using whichever function is available , keeping your code consistent. 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user. 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise. Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind. 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily. Few popular libraries are : mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference. 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code. Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community. They contain user feedback, expert advice and useful code snippets. So check them out. 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!! 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc. The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more 1. Codeigniter 2. WordPress 3. Joomla CMS 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment. Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster. Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free. 本站聲明 本文內(nèi)容由網(wǎng)友自發(fā)貢獻,版權(quán)歸原作者所有,本站不承擔相應(yīng)法律責任。如您發(fā)現(xiàn)有涉嫌抄襲侵權(quán)的內(nèi)容,請聯(lián)系admin@php.cn 熱AI工具 Undress AI Tool 免費脫衣服圖片 Undresser.AI Undress 人工智能驅(qū)動的應(yīng)用程序,用于創(chuàng)建逼真的裸體照片 AI Clothes Remover 用于從照片中去除衣服的在線人工智能工具。 Clothoff.io AI脫衣機 Video Face Swap 使用我們完全免費的人工智能換臉工具輕松在任何視頻中換臉! 顯示更多 熱門文章 指南:恒星刀片保存文件位置/保存文件丟失/不保存 4 周前 By DDD Oguri Cap Build Guide |漂亮的德比志 2 周前 By Jack chen Agnes Tachyon Build Guide |漂亮的德比志 1 周前 By Jack chen 沙丘:覺醒 - 高級行星學家Quest演練 4 周前 By Jack chen 約會一切:德克和哈珀關(guān)系指南 4 周前 By Jack chen 顯示更多 熱工具 記事本++7.3.1 好用且免費的代碼編輯器 SublimeText3漢化版 中文版,非常好用 禪工作室 13.0.1 功能強大的PHP集成開發(fā)環(huán)境 Dreamweaver CS6 視覺化網(wǎng)頁開發(fā)工具 SublimeText3 Mac版 神級代碼編輯軟件(SublimeText3) 顯示更多 熱門話題 gmail郵箱登陸入口在哪里 8638 17 Java教程 1783 16 CakePHP 教程 1728 56 Laravel 教程 1578 28 PHP教程 1442 31 顯示更多 Related knowledge 如何在PHP中實施身份驗證和授權(quán)? Jun 20, 2025 am 01:03 AM tosecurelyhandleauthenticationandationallizationInphp,lofterTheSesteps:1.AlwaysHashPasswordSwithPassword_hash()andverifyusingspasspassword_verify(),usepreparedStatatementStopreventsqlineptions,andStoreSeruserDatain usseruserDatain $ _sessiveferterlogin.2.implementrole-2.imaccessccsccccccccccccccccccccccccc. 如何在PHP中安全地處理文件上傳? Jun 19, 2025 am 01:05 AM 要安全處理PHP中的文件上傳,核心在于驗證文件類型、重命名文件并限制權(quán)限。1.使用finfo_file()檢查真實MIME類型,僅允許特定類型如image/jpeg;2.用uniqid()生成隨機文件名,存儲至非Web根目錄;3.通過php.ini和HTML表單限制文件大小,設(shè)置目錄權(quán)限為0755;4.使用ClamAV掃描惡意軟件,增強安全性。這些步驟有效防止安全漏洞,確保文件上傳過程安全可靠。 PHP中==(松散比較)和===(嚴格的比較)之間有什么區(qū)別? Jun 19, 2025 am 01:07 AM 在PHP中,==與===的主要區(qū)別在于類型檢查的嚴格程度。==在比較前會進行類型轉(zhuǎn)換,例如5=="5"返回true,而===要求值和類型都相同才會返回true,例如5==="5"返回false。使用場景上,===更安全應(yīng)優(yōu)先使用,==僅在需要類型轉(zhuǎn)換時使用。 如何在PHP( - , *, /,%)中執(zhí)行算術(shù)操作? Jun 19, 2025 pm 05:13 PM PHP中使用基本數(shù)學運算的方法如下:1.加法用 號,支持整數(shù)和浮點數(shù),也可用于變量,字符串數(shù)字會自動轉(zhuǎn)換但不推薦依賴;2.減法用-號,變量同理,類型轉(zhuǎn)換同樣適用;3.乘法用*號,適用于數(shù)字及類似字符串;4.除法用/號,需避免除以零,并注意結(jié)果可能是浮點數(shù);5.取模用%號,可用于判斷奇偶數(shù),處理負數(shù)時余數(shù)符號與被除數(shù)一致。正確使用這些運算符的關(guān)鍵在于確保數(shù)據(jù)類型清晰并處理好邊界情況。 如何與PHP的NOSQL數(shù)據(jù)庫(例如MongoDB,Redis)進行交互? Jun 19, 2025 am 01:07 AM 是的,PHP可以通過特定擴展或庫與MongoDB和Redis等NoSQL數(shù)據(jù)庫交互。首先,使用MongoDBPHP驅(qū)動(通過PECL或Composer安裝)創(chuàng)建客戶端實例并操作數(shù)據(jù)庫及集合,支持插入、查詢、聚合等操作;其次,使用Predis庫或phpredis擴展連接Redis,執(zhí)行鍵值設(shè)置與獲取,推薦phpredis用于高性能場景,Predis則便于快速部署;兩者均適用于生產(chǎn)環(huán)境且文檔完善。 我如何了解最新的PHP開發(fā)和最佳實踐? Jun 23, 2025 am 12:56 AM TostaycurrentwithPHPdevelopmentsandbestpractices,followkeynewssourceslikePHP.netandPHPWeekly,engagewithcommunitiesonforumsandconferences,keeptoolingupdatedandgraduallyadoptnewfeatures,andreadorcontributetoopensourceprojects.First,followreliablesource 什么是PHP,為什么它用于Web開發(fā)? Jun 23, 2025 am 12:55 AM PHPbecamepopularforwebdevelopmentduetoitseaseoflearning,seamlessintegrationwithHTML,widespreadhostingsupport,andalargeecosystemincludingframeworkslikeLaravelandCMSplatformslikeWordPress.Itexcelsinhandlingformsubmissions,managingusersessions,interacti 如何設(shè)置PHP時區(qū)? Jun 25, 2025 am 01:00 AM tosetTherightTimeZoneInphp,restate_default_timezone_set()functionAtthestArtofyourscriptWithavalIdidentIdentifiersuchas'america/new_york'.1.usedate_default_default_timezone_set_set() See all articles
Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual.<\/p> 11. Do not gzip output in your application , make apache do that
Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php.<\/p>
Use apache mod_gzip\/mod_deflate to compress content via the .htaccess file.<\/p> 12. Use json_encode when echoing javascript code from php
There are times when some javascript code is generated dynamically from php.<\/p>
$images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= \"'$image' ,\";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;\/\/Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,];<\/pre> Be smart. use json_encode :<\/p> $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;\/\/Output is : var images = [\"myself.png\",\"friends.png\",\"colleagues.png\"]<\/pre> Isn't that neat ?<\/p> 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of \"debugging\" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on.<\/p> Make sure that your application is as intelligent as possible and reports the most important information in the shortest time.<\/p> $contents = \"All the content\";$file_path = \"\/var\/www\/project\/content.txt\";file_put_contents($file_path , $contents);<\/pre> That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons :<\/p> Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file.<\/p> $contents = \"All the content\";$dir = '\/var\/www\/project';$file_path = $dir . \"\/content.txt\";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die(\"Directory $dir is not writable, or does not exist. Please check\");}<\/pre> By doing this you get the accurate information that where is a file write failing and why<\/p> 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are \"accessible\" outside. Otherwise for example the files may be created by \"php\" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on.<\/p> \/\/ Read and write for owner, read for everybody elsechmod(\"\/somedir\/somefile\", 0644);\/\/ Everything for owner, read and execute for otherschmod(\"\/somedir\/somefile\", 0755);<\/pre> 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ \/\/Save the things}<\/pre> The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this :<\/p> if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ \/\/Save the things}<\/pre> Now you are free from the value the submit button<\/p> 16. Use static variables in function where they always have same value \/\/Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); \t echo \"Delaying for $sync_delay seconds...\"; sleep($sync_delay); echo \"Done \";}<\/pre> Instead use static variables as :<\/p> \/\/Delay for some timefunction delay(){ static $sync_delay = null;\t if($sync_delay == null) {\t$sync_delay = get_option('sync_delay'); }\t echo \"Delaying for $sync_delay seconds...\"; sleep($sync_delay); echo \"Done \";}<\/pre> 17. Don't use the $_SESSION variable directly Some simple examples are :<\/p> $_SESSION['username'] = $username;$username = $_SESSION['username'];<\/pre> But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain.<\/p> Hence use application specific keys with wrapper functions :<\/p> define('APP_ID' , 'abc_corp_ecommerce');\/\/Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}\/\/Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;}<\/pre> 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like :<\/p> function utility_a(){ \/\/This function does a utility thing like string processing}function utility_b(){ \/\/This function does nother utility thing like database processing}function utility_c(){ \/\/This function is ...}<\/pre> And you use the function throughout your application freely. You may want to wrap them into a class as static functions :<\/p> class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}\/\/and call them as $a = Utility::utility_a();$b = Utility::utility_b();<\/pre> One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else.<\/p> 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++;<\/pre> Its absolutely a WASTE.<\/p> Write<\/p> if($a == true){ $a_count++;}<\/pre> Dont try to make your code shorter by eating up syntax. Rather make your logic shorter.<\/p> Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this :<\/p> foreach($arr as $c => $v){\t$arr[$c] = trim($v);}<\/pre> But it can more cleaner with array_map :<\/p> $arr = array_map('trim' , $arr);<\/pre> This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more.<\/p> 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters.<\/p> The php filter extension provides simple way to validate or check values as being a valid 'something'.<\/p> 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate'];<\/pre> Its a good habit.<\/p> 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose<\/p> 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded :<\/p> $db_records_in_array_format; \/\/This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; \/\/2MB moresome_function($cc); \/\/Another 2MB ?<\/pre> The above thing is common when importing a csv file or exporting table to a csv file<\/p> Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays.<\/p> Consider passing them by reference , or storing them in a class variable :<\/p> $a = get_large_array();pass_to_function(&$a);<\/pre> by doing this the same variable (and not its copy) will be available to the function. Check documentation<\/p> class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { \/\/process $this->a }}<\/pre> unset them as soon as possible , so that memory is freed and rest of the script can relax.<\/p> Here is a simple demonstration of how assign by reference can save memory in some cases<\/p> ';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() \/ 1000000 . '';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() \/ 1000000 . '';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() \/ 1000000 . '';<\/pre> The output on a typical php 5.4 machine is :<\/p> Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 <\/p> So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more.<\/p> 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this :<\/p> function add_to_cart(){ $db = new Database(); $db->query(\"INSERT INTO cart .....\");}function empty_cart(){ $db = new Database(); $db->query(\"DELETE FROM cart .....\");}<\/pre> Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory.<\/p> Use the singleton pattern for special cases like database connection.<\/p> 26. Avoid direct SQL query , abstract it $query = \"INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')\";$db->query($query); \/\/call to mysqli_query()<\/pre> The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like:<\/p> All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord<\/p> It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries.<\/p> A very simple example of an activerecord insert function can be like this :<\/p> function insert_record($table_name , $data){ foreach($data as $key => $value) {\t\/\/mysqli_real_escape_string $data[$key] = $db->mres($value); }\t\t $fields = implode(',' , array_keys($data)); $values = \"'\" . implode(\"','\" , array_values($data)) . \"'\"; \/\/Final query\t $query = \"INSERT INTO {$table}($fields) VALUES($values)\";\t\t return $db->query($query);}\/\/data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);\/\/perform the INSERT queryinsert_record('users' , $data);<\/pre> The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse).<\/p> This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise.<\/p> 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again.<\/p> Benefits :<\/p> Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue.<\/p> Storing session in database makes many other things easier like:<\/p> Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines\/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example :<\/p> <\/head> <\/body><\/html><\/pre> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories.<\/p> Lets take an example<\/p> www.domain.com\/store\/home.php www.domain.com\/store\/products\/ipad.php<\/p> In home.php the following can be written :<\/p> Home<\/a>Ipad<\/a><\/pre> But in ipad.php the links have to be like this :<\/p> Home<\/a>Ipad<\/a><\/pre> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag.<\/p> <\/head>Home<\/a>Ipad<\/a><\/body><\/html><\/pre> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products\/ipad.php<\/p> 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing.<\/p> ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT);<\/pre> On production , the display should be disabled.<\/p> ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark.<\/p> After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set.<\/p> ini_set('log_errors' , '1');ini_set('error_log' , '\/path\/to\/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> Note :<\/p> 1. The path '\/path\/to\/errors.txt' should be writable by the web server for errors to be logged there.<\/p> 2. A separate error file is specified , otherwise all logs would go inside the apache\/web server error log and get mixed up with other apache errors.<\/p> 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver).<\/p> 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like \/var\/log dont have to searched.<\/p> 5. Dont set error_reporting to 0. It will not log anything then.<\/p> Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file.<\/p> Set 'display_errors=On' in php.ini on development machine<\/p> On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page.<\/p> Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work.<\/p> Set 'display_errors=Off' in php.ini on production machine<\/p> Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away.<\/p> 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results.<\/p> On a 64 bit machine you can see such output.<\/p> $ php -aInteractive shellphp > echo strtotime(\"0000-00-00 00:00:00\");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600<\/pre> But on a 32 bit machine all of them would give bool(false). Check here for more.<\/p> What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines.<\/p> 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this :<\/p> set_time_limit(30);\/\/Rest of the code<\/pre> It may not always work. Any execution that happens outside the script via system calls\/os functions like socket operations, database operations etc. will not be under control of set_time_limit.<\/p> So if a database operation takes lot of time or \"hangs\" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time.<\/p> 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it.<\/p> A better solution :<\/p> \/**\tMethod to execute a command in the terminal\tUses :\t1. system\t2. passthru\t3. exec\t4. shell_exec*\/function terminal($command){\t\/\/system\tif(function_exists('system'))\t{\t\tob_start();\t\tsystem($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/passthru\telse if(function_exists('passthru'))\t{\t\tob_start();\t\tpassthru($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/exec\telse if(function_exists('exec'))\t{\t\texec($command , $output , $return_var);\t\t$output = implode(\"\\n\" , $output);\t}\t\/\/shell_exec\telse if(function_exists('shell_exec'))\t{\t\t$output = shell_exec($command) ;\t}\telse\t{\t\t$output = 'Command execution not possible on this system';\t\t$return_var = 1;\t}\treturn array('output' => $output , 'status' => $return_var);}terminal('ls');<\/pre> The above function will execute the shell command using whichever function is available , keeping your code consistent.<\/p> 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user.<\/p> 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise.<\/p> Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind.<\/p> 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily.<\/p> Few popular libraries are :<\/p> mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference.<\/p> 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code.<\/p> Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community.<\/p> They contain user feedback, expert advice and useful code snippets. So check them out.<\/p> 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!!<\/p> 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc.<\/p> The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more<\/p> 1. Codeigniter 2. WordPress 3. Joomla CMS<\/p> 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment.<\/p> Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster.<\/p> Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free.<\/p> "} 社區(qū) 文章 合集 問答 學習 課程 編程詞典 工具庫 開發(fā)工具 網(wǎng)站源碼 PHP 庫 JS特效 網(wǎng)站素材 擴展插件 AI工具 休閑 游戲下載 游戲教程 簡體中文 簡體中文 English 繁體中文 日本語 ??? Melayu Fran?ais Deutsch Login singup 首頁 后端開發(fā) php教程 40+ Useful Php tips for beginners ? Part 1 40+ Useful Php tips for beginners ? Part 1 WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB Jun 23, 2016 pm 02:37 PM PHP學習指南 http://www.binarytides.com/category/php-2/tutorial/ In this series we are going to look into some useful tips and techniques that can be used to improve and optimise your php code. Note that these php tips are meant for beginners and not those who are already using mvc frameworks etc. The Techniques 1. Do not use relative paths , instead define a ROOT path Its quite common to see such lines : require_once('http://www.cnblogs.com/lib/some_class.php'); This approach has many drawbacks : It first searches for directories specified in the include paths of php , then looks from the current directory. So many directories are checked. When a script is included by another script in a different directory , its base directory changes to that of the including script. Another issue , is that when a script is being run from cron , it may not have its parent directory as the working directory. So its a good idea to have absolute paths : define('ROOT' , '/var/www/project/');require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code Now this is an absolute path and will always stay constant. But we can improve this further. The directory /var/www/project can change , so do we change it everytime ? No instead we make it portable using magic constants like __FILE__ . Take a closer look : //suppose your script is /var/www/project/index.php//Then __FILE__ will always have that full path.define('ROOT' , pathinfo(__FILE__, PATHINFO_DIRNAME));require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code So now even if you shift your project to a different directory , like moving it to an online server , the same code will run without any changes. 2. Dont use require , include , require_once or include_once Your script could be including various files on top , like class libraries , files for utility and helper functions etc like this : require_once('lib/Database.php');require_once('lib/Mail.php');require_once('helpers/utitlity_functions.php'); This is rather primitive. The code needs to be more flexible. Write up helper functions to include things more easily. Lets take an example : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); require_once( $path ); }load_class('Database');load_class('Mail'); See any difference ? You must. It does not need any more explanation. You can improve this further if you wish to like this : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); if(file_exists($path)) { require_once( $path ); }} There are a lot of things that can be done with this : Search multiple directories for the same class file. Change the directory containing class files easily , without breaking the code anywhere. Use similar functions for loading files that contain helper functions , html content etc. 3. Maintain debugging environment in your application During development we echo database queries , dump variables which are creating problems , and then once the problem is solved , we comment them or erase them. But its a good idea to let everything stay and help in the long run On your development machine you can do this : define('ENVIRONMENT' , 'development');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } And on the server you can do this : define('ENVIRONMENT' , 'production');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } 4. Propagate status messages via session Status messages are those messages that are generated after doing a task. <?phpif($wrong_username || $wrong_password){ $msg = 'Invalid username or password';}?><html><body><?php echo $msg; ?><form>...</form></body></html> Code like that is common. Using variables to show status messages has limitations. They cannot be send via redirects (unless you propagate them as GET variables to the next script , which is very silly). In large scripts there might be multiple messages etc. Best way is to use session to propagate them (even if on same page). For this there has to be a session_start on every page. function set_flash($msg){ $_SESSION['message'] = $msg;}function get_flash(){ $msg = $_SESSION['message']; unset($_SESSION['message']); return $msg;} and in your script : <?phpif($wrong_username || $wrong_password){ set_flash('Invalid username or password');}?><html><body>Status is : <?php echo get_flash(); ?><form>...</form></body></html> 5. Make your functions flexible function add_to_cart($item_id , $qty){ $_SESSION['cart'][$item_id] = $qty;}add_to_cart( 'IPHONE3' , 2 ); When adding a single item you use the above function. When adding multiple items , will you create another function ? NO. Just make the function flexible enough to take different kinds of parameters. Have a closer look : function add_to_cart($item_id , $qty){ if(!is_array($item_id)) { $_SESSION['cart'][$item_id] = $qty; } else { foreach($item_id as $i_id => $qty) { $_SESSION['cart'][$i_id] = $qty; } }}add_to_cart( 'IPHONE3' , 2 );add_to_cart( array('IPHONE3' => 2 , 'IPAD' => 5) ); So now the same function can accept different kinds of output. The above can be applied in lots of places to make your code more agile. 6. Omit the closing php tag if it is the last thing in a script I wonder why this tip is omitted from so many blog posts on php tips. <?phpecho "Hello";//Now dont close this tag This will save you lots of problem. Lets take an example : A class file super_class.php <?phpclass super_class{ function super_function() { //super code }}?>//super extra character after the closing tag Now index.php require_once('super_class.php');//echo an image or pdf , or set the cookies or session data And you will get Headers already send error. Why ? because the "super extra character" has been echoed , and all headers went along with that. Now you start debugging. You may have to waste many hours to find the super extra space. Hence make it a habit to omit the closing tag : <?phpclass super_class{ function super_function() { //super code }}//No closing tag Thats better. 7. Collect all output at one place , and output at one shot to the browser This is called output buffering. Lets say you have been echoing content from different functions like this : function print_header(){ echo "<div id='header'>Site Log and Login links</div>";}function print_footer(){ echo "<div id='footer'>Site was made by me</div>";}print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}print_footer(); Instead of doing like that , first collect all output in one place. You can either store it inside variables in the functions or use ob_start and ob_end_clean. So now it should look like function print_header(){ $o = "<div id='header'>Site Log and Login links</div>"; return $o;}function print_footer(){ $o = "<div id='footer'>Site was made by me</div>"; return $o;}echo print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}echo print_footer(); So why should you do output buffering : You can change the output just before sending it to browser if you need to. Think about doing some str_replaces , or may be preg_replaces or may be adding some extra html at the end like profiler/debugger output Its a bad idea to send output to browser and do php processing at the same time. Have you ever seen a website where there is a Fatal error in the sidebar or in a box in the middle of the screen. You know why that happens ? Because processing and output are being mixed. 8. Send correct mime types via header when outputting non-html content Lets echo some xml. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataecho $xml; Works fine. But it needs some improvement. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataheader("content-type: text/xml");echo $xml; Note that header line. That line tells the browser that the content is xml content. So the browser can handle it correctly. Many javascript libraries also rely on header information. Similarly for javascript , css , jpg image , png image : Javascript header("content-type: application/x-javascript");echo "var a = 10"; CSS header("content-type: text/css");echo "#div id { background:#000; }"; 9. Set the correct character encoding for a mysql connection Ever faced a problem that unicode/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation. $host = 'localhost';$username = 'root';$password = 'super_secret';//Attempt to connect to database$c = mysqli_connect($host , $username, $password); //Check connection validityif (!$c) { die ("Could not connect to the database host: <br />". mysqli_connect_error());} //Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){ die('mysqli_set_charset() failed');} Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application. Otherwise what will happen ? You will see lots of boxes and ???????? in non english text. 10. Use htmlentities with the correct characterset option Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc. $value = htmlentities($this->value , ENT_QUOTES , 'UTF-8'); Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual. 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php. Use apache mod_gzip/mod_deflate to compress content via the .htaccess file. 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php. $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= "'$image' ,";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;//Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,]; Be smart. use json_encode : $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;//Output is : var images = ["myself.png","friends.png","colleagues.png"] Isn't that neat ? 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of "debugging" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on. Make sure that your application is as intelligent as possible and reports the most important information in the shortest time. $contents = "All the content";$file_path = "/var/www/project/content.txt";file_put_contents($file_path , $contents); That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons : Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file. $contents = "All the content";$dir = '/var/www/project';$file_path = $dir . "/content.txt";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die("Directory $dir is not writable, or does not exist. Please check");} By doing this you get the accurate information that where is a file write failing and why 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are "accessible" outside. Otherwise for example the files may be created by "php" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on. // Read and write for owner, read for everybody elsechmod("/somedir/somefile", 0644);// Everything for owner, read and execute for otherschmod("/somedir/somefile", 0755); 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ //Save the things} The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this : if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ //Save the things} Now you are free from the value the submit button 16. Use static variables in function where they always have same value //Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} Instead use static variables as : //Delay for some timefunction delay(){ static $sync_delay = null; if($sync_delay == null) { $sync_delay = get_option('sync_delay'); } echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} 17. Don't use the $_SESSION variable directly Some simple examples are : $_SESSION['username'] = $username;$username = $_SESSION['username']; But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain. Hence use application specific keys with wrapper functions : define('APP_ID' , 'abc_corp_ecommerce');//Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}//Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;} 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like : function utility_a(){ //This function does a utility thing like string processing}function utility_b(){ //This function does nother utility thing like database processing}function utility_c(){ //This function is ...} And you use the function throughout your application freely. You may want to wrap them into a class as static functions : class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}//and call them as $a = Utility::utility_a();$b = Utility::utility_b(); One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else. 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++; Its absolutely a WASTE. Write if($a == true){ $a_count++;} Dont try to make your code shorter by eating up syntax. Rather make your logic shorter. Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this : foreach($arr as $c => $v){ $arr[$c] = trim($v);} But it can more cleaner with array_map : $arr = array_map('trim' , $arr); This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more. 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters. The php filter extension provides simple way to validate or check values as being a valid 'something'. 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate']; Its a good habit. 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded : $db_records_in_array_format; //This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; //2MB moresome_function($cc); //Another 2MB ? The above thing is common when importing a csv file or exporting table to a csv file Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays. Consider passing them by reference , or storing them in a class variable : $a = get_large_array();pass_to_function(&$a); by doing this the same variable (and not its copy) will be available to the function. Check documentation class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { //process $this->a }} unset them as soon as possible , so that memory is freed and rest of the script can relax. Here is a simple demonstration of how assign by reference can save memory in some cases <?phpini_set('display_errors' , true);error_reporting(E_ALL);$a = array();for($i = 0; $i < 100000 ; $i++){ $a[$i] = 'A'.$i;}echo 'Memory usage in MB : '. memory_get_usage() / 1000000 . '<br />';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() / 1000000 . '<br />';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() / 1000000 . '<br />';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() / 1000000 . '<br />'; The output on a typical php 5.4 machine is : Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more. 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this : function add_to_cart(){ $db = new Database(); $db->query("INSERT INTO cart .....");}function empty_cart(){ $db = new Database(); $db->query("DELETE FROM cart .....");} Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory. Use the singleton pattern for special cases like database connection. 26. Avoid direct SQL query , abstract it $query = "INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')";$db->query($query); //call to mysqli_query() The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like: All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries. A very simple example of an activerecord insert function can be like this : function insert_record($table_name , $data){ foreach($data as $key => $value) { //mysqli_real_escape_string $data[$key] = $db->mres($value); } $fields = implode(',' , array_keys($data)); $values = "'" . implode("','" , array_values($data)) . "'"; //Final query $query = "INSERT INTO {$table}($fields) VALUES($values)"; return $db->query($query);}//data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);//perform the INSERT queryinsert_record('users' , $data); The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse). This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise. 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again. Benefits : Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue. Storing session in database makes many other things easier like: Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example : <head> <base href="http://www.domain.com/store/"></head><body> <img src="/static/imghw/default1.png" data-src="happy.jpg" class="lazy" / alt="40+ Useful Php tips for beginners ? Part 1" ></body></html> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories. Lets take an example www.domain.com/store/home.php www.domain.com/store/products/ipad.php In home.php the following can be written : <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> But in ipad.php the links have to be like this : <a href="../home.php">Home</a><a href="ipad.php">Ipad</a> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag. <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products/ipad.php 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing. ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT); On production , the display should be disabled. ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark. After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set. ini_set('log_errors' , '1');ini_set('error_log' , '/path/to/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); Note : 1. The path '/path/to/errors.txt' should be writable by the web server for errors to be logged there. 2. A separate error file is specified , otherwise all logs would go inside the apache/web server error log and get mixed up with other apache errors. 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver). 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like /var/log dont have to searched. 5. Dont set error_reporting to 0. It will not log anything then. Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file. Set 'display_errors=On' in php.ini on development machine On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page. Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work. Set 'display_errors=Off' in php.ini on production machine Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away. 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results. On a 64 bit machine you can see such output. $ php -aInteractive shellphp > echo strtotime("0000-00-00 00:00:00");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600 But on a 32 bit machine all of them would give bool(false). Check here for more. What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines. 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this : set_time_limit(30);//Rest of the code It may not always work. Any execution that happens outside the script via system calls/os functions like socket operations, database operations etc. will not be under control of set_time_limit. So if a database operation takes lot of time or "hangs" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time. 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it. A better solution : /** Method to execute a command in the terminal Uses : 1. system 2. passthru 3. exec 4. shell_exec*/function terminal($command){ //system if(function_exists('system')) { ob_start(); system($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //passthru else if(function_exists('passthru')) { ob_start(); passthru($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //exec else if(function_exists('exec')) { exec($command , $output , $return_var); $output = implode("\n" , $output); } //shell_exec else if(function_exists('shell_exec')) { $output = shell_exec($command) ; } else { $output = 'Command execution not possible on this system'; $return_var = 1; } return array('output' => $output , 'status' => $return_var);}terminal('ls'); The above function will execute the shell command using whichever function is available , keeping your code consistent. 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user. 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise. Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind. 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily. Few popular libraries are : mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference. 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code. Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community. They contain user feedback, expert advice and useful code snippets. So check them out. 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!! 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc. The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more 1. Codeigniter 2. WordPress 3. Joomla CMS 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment. Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster. Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free. 本站聲明 本文內(nèi)容由網(wǎng)友自發(fā)貢獻,版權(quán)歸原作者所有,本站不承擔相應(yīng)法律責任。如您發(fā)現(xiàn)有涉嫌抄襲侵權(quán)的內(nèi)容,請聯(lián)系admin@php.cn 熱AI工具 Undress AI Tool 免費脫衣服圖片 Undresser.AI Undress 人工智能驅(qū)動的應(yīng)用程序,用于創(chuàng)建逼真的裸體照片 AI Clothes Remover 用于從照片中去除衣服的在線人工智能工具。 Clothoff.io AI脫衣機 Video Face Swap 使用我們完全免費的人工智能換臉工具輕松在任何視頻中換臉! 顯示更多 熱門文章 指南:恒星刀片保存文件位置/保存文件丟失/不保存 4 周前 By DDD Oguri Cap Build Guide |漂亮的德比志 2 周前 By Jack chen Agnes Tachyon Build Guide |漂亮的德比志 1 周前 By Jack chen 沙丘:覺醒 - 高級行星學家Quest演練 4 周前 By Jack chen 約會一切:德克和哈珀關(guān)系指南 4 周前 By Jack chen 顯示更多 熱工具 記事本++7.3.1 好用且免費的代碼編輯器 SublimeText3漢化版 中文版,非常好用 禪工作室 13.0.1 功能強大的PHP集成開發(fā)環(huán)境 Dreamweaver CS6 視覺化網(wǎng)頁開發(fā)工具 SublimeText3 Mac版 神級代碼編輯軟件(SublimeText3) 顯示更多 熱門話題 gmail郵箱登陸入口在哪里 8638 17 Java教程 1783 16 CakePHP 教程 1728 56 Laravel 教程 1578 28 PHP教程 1442 31 顯示更多 Related knowledge 如何在PHP中實施身份驗證和授權(quán)? Jun 20, 2025 am 01:03 AM tosecurelyhandleauthenticationandationallizationInphp,lofterTheSesteps:1.AlwaysHashPasswordSwithPassword_hash()andverifyusingspasspassword_verify(),usepreparedStatatementStopreventsqlineptions,andStoreSeruserDatain usseruserDatain $ _sessiveferterlogin.2.implementrole-2.imaccessccsccccccccccccccccccccccccc. 如何在PHP中安全地處理文件上傳? Jun 19, 2025 am 01:05 AM 要安全處理PHP中的文件上傳,核心在于驗證文件類型、重命名文件并限制權(quán)限。1.使用finfo_file()檢查真實MIME類型,僅允許特定類型如image/jpeg;2.用uniqid()生成隨機文件名,存儲至非Web根目錄;3.通過php.ini和HTML表單限制文件大小,設(shè)置目錄權(quán)限為0755;4.使用ClamAV掃描惡意軟件,增強安全性。這些步驟有效防止安全漏洞,確保文件上傳過程安全可靠。 PHP中==(松散比較)和===(嚴格的比較)之間有什么區(qū)別? Jun 19, 2025 am 01:07 AM 在PHP中,==與===的主要區(qū)別在于類型檢查的嚴格程度。==在比較前會進行類型轉(zhuǎn)換,例如5=="5"返回true,而===要求值和類型都相同才會返回true,例如5==="5"返回false。使用場景上,===更安全應(yīng)優(yōu)先使用,==僅在需要類型轉(zhuǎn)換時使用。 如何在PHP( - , *, /,%)中執(zhí)行算術(shù)操作? Jun 19, 2025 pm 05:13 PM PHP中使用基本數(shù)學運算的方法如下:1.加法用 號,支持整數(shù)和浮點數(shù),也可用于變量,字符串數(shù)字會自動轉(zhuǎn)換但不推薦依賴;2.減法用-號,變量同理,類型轉(zhuǎn)換同樣適用;3.乘法用*號,適用于數(shù)字及類似字符串;4.除法用/號,需避免除以零,并注意結(jié)果可能是浮點數(shù);5.取模用%號,可用于判斷奇偶數(shù),處理負數(shù)時余數(shù)符號與被除數(shù)一致。正確使用這些運算符的關(guān)鍵在于確保數(shù)據(jù)類型清晰并處理好邊界情況。 如何與PHP的NOSQL數(shù)據(jù)庫(例如MongoDB,Redis)進行交互? Jun 19, 2025 am 01:07 AM 是的,PHP可以通過特定擴展或庫與MongoDB和Redis等NoSQL數(shù)據(jù)庫交互。首先,使用MongoDBPHP驅(qū)動(通過PECL或Composer安裝)創(chuàng)建客戶端實例并操作數(shù)據(jù)庫及集合,支持插入、查詢、聚合等操作;其次,使用Predis庫或phpredis擴展連接Redis,執(zhí)行鍵值設(shè)置與獲取,推薦phpredis用于高性能場景,Predis則便于快速部署;兩者均適用于生產(chǎn)環(huán)境且文檔完善。 我如何了解最新的PHP開發(fā)和最佳實踐? Jun 23, 2025 am 12:56 AM TostaycurrentwithPHPdevelopmentsandbestpractices,followkeynewssourceslikePHP.netandPHPWeekly,engagewithcommunitiesonforumsandconferences,keeptoolingupdatedandgraduallyadoptnewfeatures,andreadorcontributetoopensourceprojects.First,followreliablesource 什么是PHP,為什么它用于Web開發(fā)? Jun 23, 2025 am 12:55 AM PHPbecamepopularforwebdevelopmentduetoitseaseoflearning,seamlessintegrationwithHTML,widespreadhostingsupport,andalargeecosystemincludingframeworkslikeLaravelandCMSplatformslikeWordPress.Itexcelsinhandlingformsubmissions,managingusersessions,interacti 如何設(shè)置PHP時區(qū)? Jun 25, 2025 am 01:00 AM tosetTherightTimeZoneInphp,restate_default_timezone_set()functionAtthestArtofyourscriptWithavalIdidentIdentifiersuchas'america/new_york'.1.usedate_default_default_timezone_set_set() See all articles
Be smart. use json_encode :<\/p>
$images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;\/\/Output is : var images = [\"myself.png\",\"friends.png\",\"colleagues.png\"]<\/pre> Isn't that neat ?<\/p> 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of \"debugging\" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on.<\/p> Make sure that your application is as intelligent as possible and reports the most important information in the shortest time.<\/p> $contents = \"All the content\";$file_path = \"\/var\/www\/project\/content.txt\";file_put_contents($file_path , $contents);<\/pre> That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons :<\/p> Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file.<\/p> $contents = \"All the content\";$dir = '\/var\/www\/project';$file_path = $dir . \"\/content.txt\";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die(\"Directory $dir is not writable, or does not exist. Please check\");}<\/pre> By doing this you get the accurate information that where is a file write failing and why<\/p> 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are \"accessible\" outside. Otherwise for example the files may be created by \"php\" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on.<\/p> \/\/ Read and write for owner, read for everybody elsechmod(\"\/somedir\/somefile\", 0644);\/\/ Everything for owner, read and execute for otherschmod(\"\/somedir\/somefile\", 0755);<\/pre> 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ \/\/Save the things}<\/pre> The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this :<\/p> if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ \/\/Save the things}<\/pre> Now you are free from the value the submit button<\/p> 16. Use static variables in function where they always have same value \/\/Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); \t echo \"Delaying for $sync_delay seconds...\"; sleep($sync_delay); echo \"Done \";}<\/pre> Instead use static variables as :<\/p> \/\/Delay for some timefunction delay(){ static $sync_delay = null;\t if($sync_delay == null) {\t$sync_delay = get_option('sync_delay'); }\t echo \"Delaying for $sync_delay seconds...\"; sleep($sync_delay); echo \"Done \";}<\/pre> 17. Don't use the $_SESSION variable directly Some simple examples are :<\/p> $_SESSION['username'] = $username;$username = $_SESSION['username'];<\/pre> But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain.<\/p> Hence use application specific keys with wrapper functions :<\/p> define('APP_ID' , 'abc_corp_ecommerce');\/\/Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}\/\/Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;}<\/pre> 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like :<\/p> function utility_a(){ \/\/This function does a utility thing like string processing}function utility_b(){ \/\/This function does nother utility thing like database processing}function utility_c(){ \/\/This function is ...}<\/pre> And you use the function throughout your application freely. You may want to wrap them into a class as static functions :<\/p> class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}\/\/and call them as $a = Utility::utility_a();$b = Utility::utility_b();<\/pre> One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else.<\/p> 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++;<\/pre> Its absolutely a WASTE.<\/p> Write<\/p> if($a == true){ $a_count++;}<\/pre> Dont try to make your code shorter by eating up syntax. Rather make your logic shorter.<\/p> Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this :<\/p> foreach($arr as $c => $v){\t$arr[$c] = trim($v);}<\/pre> But it can more cleaner with array_map :<\/p> $arr = array_map('trim' , $arr);<\/pre> This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more.<\/p> 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters.<\/p> The php filter extension provides simple way to validate or check values as being a valid 'something'.<\/p> 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate'];<\/pre> Its a good habit.<\/p> 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose<\/p> 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded :<\/p> $db_records_in_array_format; \/\/This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; \/\/2MB moresome_function($cc); \/\/Another 2MB ?<\/pre> The above thing is common when importing a csv file or exporting table to a csv file<\/p> Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays.<\/p> Consider passing them by reference , or storing them in a class variable :<\/p> $a = get_large_array();pass_to_function(&$a);<\/pre> by doing this the same variable (and not its copy) will be available to the function. Check documentation<\/p> class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { \/\/process $this->a }}<\/pre> unset them as soon as possible , so that memory is freed and rest of the script can relax.<\/p> Here is a simple demonstration of how assign by reference can save memory in some cases<\/p> ';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() \/ 1000000 . '';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() \/ 1000000 . '';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() \/ 1000000 . '';<\/pre> The output on a typical php 5.4 machine is :<\/p> Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 <\/p> So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more.<\/p> 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this :<\/p> function add_to_cart(){ $db = new Database(); $db->query(\"INSERT INTO cart .....\");}function empty_cart(){ $db = new Database(); $db->query(\"DELETE FROM cart .....\");}<\/pre> Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory.<\/p> Use the singleton pattern for special cases like database connection.<\/p> 26. Avoid direct SQL query , abstract it $query = \"INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')\";$db->query($query); \/\/call to mysqli_query()<\/pre> The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like:<\/p> All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord<\/p> It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries.<\/p> A very simple example of an activerecord insert function can be like this :<\/p> function insert_record($table_name , $data){ foreach($data as $key => $value) {\t\/\/mysqli_real_escape_string $data[$key] = $db->mres($value); }\t\t $fields = implode(',' , array_keys($data)); $values = \"'\" . implode(\"','\" , array_values($data)) . \"'\"; \/\/Final query\t $query = \"INSERT INTO {$table}($fields) VALUES($values)\";\t\t return $db->query($query);}\/\/data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);\/\/perform the INSERT queryinsert_record('users' , $data);<\/pre> The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse).<\/p> This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise.<\/p> 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again.<\/p> Benefits :<\/p> Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue.<\/p> Storing session in database makes many other things easier like:<\/p> Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines\/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example :<\/p> <\/head> <\/body><\/html><\/pre> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories.<\/p> Lets take an example<\/p> www.domain.com\/store\/home.php www.domain.com\/store\/products\/ipad.php<\/p> In home.php the following can be written :<\/p> Home<\/a>Ipad<\/a><\/pre> But in ipad.php the links have to be like this :<\/p> Home<\/a>Ipad<\/a><\/pre> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag.<\/p> <\/head>Home<\/a>Ipad<\/a><\/body><\/html><\/pre> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products\/ipad.php<\/p> 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing.<\/p> ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT);<\/pre> On production , the display should be disabled.<\/p> ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark.<\/p> After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set.<\/p> ini_set('log_errors' , '1');ini_set('error_log' , '\/path\/to\/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> Note :<\/p> 1. The path '\/path\/to\/errors.txt' should be writable by the web server for errors to be logged there.<\/p> 2. A separate error file is specified , otherwise all logs would go inside the apache\/web server error log and get mixed up with other apache errors.<\/p> 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver).<\/p> 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like \/var\/log dont have to searched.<\/p> 5. Dont set error_reporting to 0. It will not log anything then.<\/p> Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file.<\/p> Set 'display_errors=On' in php.ini on development machine<\/p> On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page.<\/p> Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work.<\/p> Set 'display_errors=Off' in php.ini on production machine<\/p> Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away.<\/p> 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results.<\/p> On a 64 bit machine you can see such output.<\/p> $ php -aInteractive shellphp > echo strtotime(\"0000-00-00 00:00:00\");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600<\/pre> But on a 32 bit machine all of them would give bool(false). Check here for more.<\/p> What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines.<\/p> 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this :<\/p> set_time_limit(30);\/\/Rest of the code<\/pre> It may not always work. Any execution that happens outside the script via system calls\/os functions like socket operations, database operations etc. will not be under control of set_time_limit.<\/p> So if a database operation takes lot of time or \"hangs\" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time.<\/p> 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it.<\/p> A better solution :<\/p> \/**\tMethod to execute a command in the terminal\tUses :\t1. system\t2. passthru\t3. exec\t4. shell_exec*\/function terminal($command){\t\/\/system\tif(function_exists('system'))\t{\t\tob_start();\t\tsystem($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/passthru\telse if(function_exists('passthru'))\t{\t\tob_start();\t\tpassthru($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/exec\telse if(function_exists('exec'))\t{\t\texec($command , $output , $return_var);\t\t$output = implode(\"\\n\" , $output);\t}\t\/\/shell_exec\telse if(function_exists('shell_exec'))\t{\t\t$output = shell_exec($command) ;\t}\telse\t{\t\t$output = 'Command execution not possible on this system';\t\t$return_var = 1;\t}\treturn array('output' => $output , 'status' => $return_var);}terminal('ls');<\/pre> The above function will execute the shell command using whichever function is available , keeping your code consistent.<\/p> 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user.<\/p> 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise.<\/p> Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind.<\/p> 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily.<\/p> Few popular libraries are :<\/p> mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference.<\/p> 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code.<\/p> Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community.<\/p> They contain user feedback, expert advice and useful code snippets. So check them out.<\/p> 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!!<\/p> 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc.<\/p> The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more<\/p> 1. Codeigniter 2. WordPress 3. Joomla CMS<\/p> 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment.<\/p> Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster.<\/p> Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free.<\/p> "} 社區(qū) 文章 合集 問答 學習 課程 編程詞典 工具庫 開發(fā)工具 網(wǎng)站源碼 PHP 庫 JS特效 網(wǎng)站素材 擴展插件 AI工具 休閑 游戲下載 游戲教程 簡體中文 簡體中文 English 繁體中文 日本語 ??? Melayu Fran?ais Deutsch Login singup 首頁 后端開發(fā) php教程 40+ Useful Php tips for beginners ? Part 1 40+ Useful Php tips for beginners ? Part 1 WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB Jun 23, 2016 pm 02:37 PM PHP學習指南 http://www.binarytides.com/category/php-2/tutorial/ In this series we are going to look into some useful tips and techniques that can be used to improve and optimise your php code. Note that these php tips are meant for beginners and not those who are already using mvc frameworks etc. The Techniques 1. Do not use relative paths , instead define a ROOT path Its quite common to see such lines : require_once('http://www.cnblogs.com/lib/some_class.php'); This approach has many drawbacks : It first searches for directories specified in the include paths of php , then looks from the current directory. So many directories are checked. When a script is included by another script in a different directory , its base directory changes to that of the including script. Another issue , is that when a script is being run from cron , it may not have its parent directory as the working directory. So its a good idea to have absolute paths : define('ROOT' , '/var/www/project/');require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code Now this is an absolute path and will always stay constant. But we can improve this further. The directory /var/www/project can change , so do we change it everytime ? No instead we make it portable using magic constants like __FILE__ . Take a closer look : //suppose your script is /var/www/project/index.php//Then __FILE__ will always have that full path.define('ROOT' , pathinfo(__FILE__, PATHINFO_DIRNAME));require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code So now even if you shift your project to a different directory , like moving it to an online server , the same code will run without any changes. 2. Dont use require , include , require_once or include_once Your script could be including various files on top , like class libraries , files for utility and helper functions etc like this : require_once('lib/Database.php');require_once('lib/Mail.php');require_once('helpers/utitlity_functions.php'); This is rather primitive. The code needs to be more flexible. Write up helper functions to include things more easily. Lets take an example : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); require_once( $path ); }load_class('Database');load_class('Mail'); See any difference ? You must. It does not need any more explanation. You can improve this further if you wish to like this : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); if(file_exists($path)) { require_once( $path ); }} There are a lot of things that can be done with this : Search multiple directories for the same class file. Change the directory containing class files easily , without breaking the code anywhere. Use similar functions for loading files that contain helper functions , html content etc. 3. Maintain debugging environment in your application During development we echo database queries , dump variables which are creating problems , and then once the problem is solved , we comment them or erase them. But its a good idea to let everything stay and help in the long run On your development machine you can do this : define('ENVIRONMENT' , 'development');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } And on the server you can do this : define('ENVIRONMENT' , 'production');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } 4. Propagate status messages via session Status messages are those messages that are generated after doing a task. <?phpif($wrong_username || $wrong_password){ $msg = 'Invalid username or password';}?><html><body><?php echo $msg; ?><form>...</form></body></html> Code like that is common. Using variables to show status messages has limitations. They cannot be send via redirects (unless you propagate them as GET variables to the next script , which is very silly). In large scripts there might be multiple messages etc. Best way is to use session to propagate them (even if on same page). For this there has to be a session_start on every page. function set_flash($msg){ $_SESSION['message'] = $msg;}function get_flash(){ $msg = $_SESSION['message']; unset($_SESSION['message']); return $msg;} and in your script : <?phpif($wrong_username || $wrong_password){ set_flash('Invalid username or password');}?><html><body>Status is : <?php echo get_flash(); ?><form>...</form></body></html> 5. Make your functions flexible function add_to_cart($item_id , $qty){ $_SESSION['cart'][$item_id] = $qty;}add_to_cart( 'IPHONE3' , 2 ); When adding a single item you use the above function. When adding multiple items , will you create another function ? NO. Just make the function flexible enough to take different kinds of parameters. Have a closer look : function add_to_cart($item_id , $qty){ if(!is_array($item_id)) { $_SESSION['cart'][$item_id] = $qty; } else { foreach($item_id as $i_id => $qty) { $_SESSION['cart'][$i_id] = $qty; } }}add_to_cart( 'IPHONE3' , 2 );add_to_cart( array('IPHONE3' => 2 , 'IPAD' => 5) ); So now the same function can accept different kinds of output. The above can be applied in lots of places to make your code more agile. 6. Omit the closing php tag if it is the last thing in a script I wonder why this tip is omitted from so many blog posts on php tips. <?phpecho "Hello";//Now dont close this tag This will save you lots of problem. Lets take an example : A class file super_class.php <?phpclass super_class{ function super_function() { //super code }}?>//super extra character after the closing tag Now index.php require_once('super_class.php');//echo an image or pdf , or set the cookies or session data And you will get Headers already send error. Why ? because the "super extra character" has been echoed , and all headers went along with that. Now you start debugging. You may have to waste many hours to find the super extra space. Hence make it a habit to omit the closing tag : <?phpclass super_class{ function super_function() { //super code }}//No closing tag Thats better. 7. Collect all output at one place , and output at one shot to the browser This is called output buffering. Lets say you have been echoing content from different functions like this : function print_header(){ echo "<div id='header'>Site Log and Login links</div>";}function print_footer(){ echo "<div id='footer'>Site was made by me</div>";}print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}print_footer(); Instead of doing like that , first collect all output in one place. You can either store it inside variables in the functions or use ob_start and ob_end_clean. So now it should look like function print_header(){ $o = "<div id='header'>Site Log and Login links</div>"; return $o;}function print_footer(){ $o = "<div id='footer'>Site was made by me</div>"; return $o;}echo print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}echo print_footer(); So why should you do output buffering : You can change the output just before sending it to browser if you need to. Think about doing some str_replaces , or may be preg_replaces or may be adding some extra html at the end like profiler/debugger output Its a bad idea to send output to browser and do php processing at the same time. Have you ever seen a website where there is a Fatal error in the sidebar or in a box in the middle of the screen. You know why that happens ? Because processing and output are being mixed. 8. Send correct mime types via header when outputting non-html content Lets echo some xml. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataecho $xml; Works fine. But it needs some improvement. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataheader("content-type: text/xml");echo $xml; Note that header line. That line tells the browser that the content is xml content. So the browser can handle it correctly. Many javascript libraries also rely on header information. Similarly for javascript , css , jpg image , png image : Javascript header("content-type: application/x-javascript");echo "var a = 10"; CSS header("content-type: text/css");echo "#div id { background:#000; }"; 9. Set the correct character encoding for a mysql connection Ever faced a problem that unicode/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation. $host = 'localhost';$username = 'root';$password = 'super_secret';//Attempt to connect to database$c = mysqli_connect($host , $username, $password); //Check connection validityif (!$c) { die ("Could not connect to the database host: <br />". mysqli_connect_error());} //Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){ die('mysqli_set_charset() failed');} Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application. Otherwise what will happen ? You will see lots of boxes and ???????? in non english text. 10. Use htmlentities with the correct characterset option Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc. $value = htmlentities($this->value , ENT_QUOTES , 'UTF-8'); Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual. 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php. Use apache mod_gzip/mod_deflate to compress content via the .htaccess file. 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php. $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= "'$image' ,";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;//Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,]; Be smart. use json_encode : $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;//Output is : var images = ["myself.png","friends.png","colleagues.png"] Isn't that neat ? 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of "debugging" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on. Make sure that your application is as intelligent as possible and reports the most important information in the shortest time. $contents = "All the content";$file_path = "/var/www/project/content.txt";file_put_contents($file_path , $contents); That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons : Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file. $contents = "All the content";$dir = '/var/www/project';$file_path = $dir . "/content.txt";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die("Directory $dir is not writable, or does not exist. Please check");} By doing this you get the accurate information that where is a file write failing and why 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are "accessible" outside. Otherwise for example the files may be created by "php" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on. // Read and write for owner, read for everybody elsechmod("/somedir/somefile", 0644);// Everything for owner, read and execute for otherschmod("/somedir/somefile", 0755); 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ //Save the things} The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this : if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ //Save the things} Now you are free from the value the submit button 16. Use static variables in function where they always have same value //Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} Instead use static variables as : //Delay for some timefunction delay(){ static $sync_delay = null; if($sync_delay == null) { $sync_delay = get_option('sync_delay'); } echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} 17. Don't use the $_SESSION variable directly Some simple examples are : $_SESSION['username'] = $username;$username = $_SESSION['username']; But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain. Hence use application specific keys with wrapper functions : define('APP_ID' , 'abc_corp_ecommerce');//Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}//Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;} 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like : function utility_a(){ //This function does a utility thing like string processing}function utility_b(){ //This function does nother utility thing like database processing}function utility_c(){ //This function is ...} And you use the function throughout your application freely. You may want to wrap them into a class as static functions : class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}//and call them as $a = Utility::utility_a();$b = Utility::utility_b(); One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else. 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++; Its absolutely a WASTE. Write if($a == true){ $a_count++;} Dont try to make your code shorter by eating up syntax. Rather make your logic shorter. Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this : foreach($arr as $c => $v){ $arr[$c] = trim($v);} But it can more cleaner with array_map : $arr = array_map('trim' , $arr); This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more. 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters. The php filter extension provides simple way to validate or check values as being a valid 'something'. 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate']; Its a good habit. 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded : $db_records_in_array_format; //This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; //2MB moresome_function($cc); //Another 2MB ? The above thing is common when importing a csv file or exporting table to a csv file Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays. Consider passing them by reference , or storing them in a class variable : $a = get_large_array();pass_to_function(&$a); by doing this the same variable (and not its copy) will be available to the function. Check documentation class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { //process $this->a }} unset them as soon as possible , so that memory is freed and rest of the script can relax. Here is a simple demonstration of how assign by reference can save memory in some cases <?phpini_set('display_errors' , true);error_reporting(E_ALL);$a = array();for($i = 0; $i < 100000 ; $i++){ $a[$i] = 'A'.$i;}echo 'Memory usage in MB : '. memory_get_usage() / 1000000 . '<br />';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() / 1000000 . '<br />';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() / 1000000 . '<br />';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() / 1000000 . '<br />'; The output on a typical php 5.4 machine is : Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more. 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this : function add_to_cart(){ $db = new Database(); $db->query("INSERT INTO cart .....");}function empty_cart(){ $db = new Database(); $db->query("DELETE FROM cart .....");} Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory. Use the singleton pattern for special cases like database connection. 26. Avoid direct SQL query , abstract it $query = "INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')";$db->query($query); //call to mysqli_query() The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like: All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries. A very simple example of an activerecord insert function can be like this : function insert_record($table_name , $data){ foreach($data as $key => $value) { //mysqli_real_escape_string $data[$key] = $db->mres($value); } $fields = implode(',' , array_keys($data)); $values = "'" . implode("','" , array_values($data)) . "'"; //Final query $query = "INSERT INTO {$table}($fields) VALUES($values)"; return $db->query($query);}//data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);//perform the INSERT queryinsert_record('users' , $data); The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse). This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise. 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again. Benefits : Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue. Storing session in database makes many other things easier like: Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example : <head> <base href="http://www.domain.com/store/"></head><body> <img src="/static/imghw/default1.png" data-src="happy.jpg" class="lazy" / alt="40+ Useful Php tips for beginners ? Part 1" ></body></html> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories. Lets take an example www.domain.com/store/home.php www.domain.com/store/products/ipad.php In home.php the following can be written : <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> But in ipad.php the links have to be like this : <a href="../home.php">Home</a><a href="ipad.php">Ipad</a> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag. <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products/ipad.php 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing. ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT); On production , the display should be disabled. ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark. After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set. ini_set('log_errors' , '1');ini_set('error_log' , '/path/to/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); Note : 1. The path '/path/to/errors.txt' should be writable by the web server for errors to be logged there. 2. A separate error file is specified , otherwise all logs would go inside the apache/web server error log and get mixed up with other apache errors. 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver). 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like /var/log dont have to searched. 5. Dont set error_reporting to 0. It will not log anything then. Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file. Set 'display_errors=On' in php.ini on development machine On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page. Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work. Set 'display_errors=Off' in php.ini on production machine Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away. 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results. On a 64 bit machine you can see such output. $ php -aInteractive shellphp > echo strtotime("0000-00-00 00:00:00");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600 But on a 32 bit machine all of them would give bool(false). Check here for more. What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines. 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this : set_time_limit(30);//Rest of the code It may not always work. Any execution that happens outside the script via system calls/os functions like socket operations, database operations etc. will not be under control of set_time_limit. So if a database operation takes lot of time or "hangs" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time. 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it. A better solution : /** Method to execute a command in the terminal Uses : 1. system 2. passthru 3. exec 4. shell_exec*/function terminal($command){ //system if(function_exists('system')) { ob_start(); system($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //passthru else if(function_exists('passthru')) { ob_start(); passthru($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //exec else if(function_exists('exec')) { exec($command , $output , $return_var); $output = implode("\n" , $output); } //shell_exec else if(function_exists('shell_exec')) { $output = shell_exec($command) ; } else { $output = 'Command execution not possible on this system'; $return_var = 1; } return array('output' => $output , 'status' => $return_var);}terminal('ls'); The above function will execute the shell command using whichever function is available , keeping your code consistent. 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user. 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise. Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind. 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily. Few popular libraries are : mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference. 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code. Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community. They contain user feedback, expert advice and useful code snippets. So check them out. 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!! 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc. The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more 1. Codeigniter 2. WordPress 3. Joomla CMS 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment. Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster. Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free. 本站聲明 本文內(nèi)容由網(wǎng)友自發(fā)貢獻,版權(quán)歸原作者所有,本站不承擔相應(yīng)法律責任。如您發(fā)現(xiàn)有涉嫌抄襲侵權(quán)的內(nèi)容,請聯(lián)系admin@php.cn 熱AI工具 Undress AI Tool 免費脫衣服圖片 Undresser.AI Undress 人工智能驅(qū)動的應(yīng)用程序,用于創(chuàng)建逼真的裸體照片 AI Clothes Remover 用于從照片中去除衣服的在線人工智能工具。 Clothoff.io AI脫衣機 Video Face Swap 使用我們完全免費的人工智能換臉工具輕松在任何視頻中換臉! 顯示更多 熱門文章 指南:恒星刀片保存文件位置/保存文件丟失/不保存 4 周前 By DDD Oguri Cap Build Guide |漂亮的德比志 2 周前 By Jack chen Agnes Tachyon Build Guide |漂亮的德比志 1 周前 By Jack chen 沙丘:覺醒 - 高級行星學家Quest演練 4 周前 By Jack chen 約會一切:德克和哈珀關(guān)系指南 4 周前 By Jack chen 顯示更多 熱工具 記事本++7.3.1 好用且免費的代碼編輯器 SublimeText3漢化版 中文版,非常好用 禪工作室 13.0.1 功能強大的PHP集成開發(fā)環(huán)境 Dreamweaver CS6 視覺化網(wǎng)頁開發(fā)工具 SublimeText3 Mac版 神級代碼編輯軟件(SublimeText3) 顯示更多 熱門話題 gmail郵箱登陸入口在哪里 8638 17 Java教程 1783 16 CakePHP 教程 1728 56 Laravel 教程 1578 28 PHP教程 1442 31 顯示更多 Related knowledge 如何在PHP中實施身份驗證和授權(quán)? Jun 20, 2025 am 01:03 AM tosecurelyhandleauthenticationandationallizationInphp,lofterTheSesteps:1.AlwaysHashPasswordSwithPassword_hash()andverifyusingspasspassword_verify(),usepreparedStatatementStopreventsqlineptions,andStoreSeruserDatain usseruserDatain $ _sessiveferterlogin.2.implementrole-2.imaccessccsccccccccccccccccccccccccc. 如何在PHP中安全地處理文件上傳? Jun 19, 2025 am 01:05 AM 要安全處理PHP中的文件上傳,核心在于驗證文件類型、重命名文件并限制權(quán)限。1.使用finfo_file()檢查真實MIME類型,僅允許特定類型如image/jpeg;2.用uniqid()生成隨機文件名,存儲至非Web根目錄;3.通過php.ini和HTML表單限制文件大小,設(shè)置目錄權(quán)限為0755;4.使用ClamAV掃描惡意軟件,增強安全性。這些步驟有效防止安全漏洞,確保文件上傳過程安全可靠。 PHP中==(松散比較)和===(嚴格的比較)之間有什么區(qū)別? Jun 19, 2025 am 01:07 AM 在PHP中,==與===的主要區(qū)別在于類型檢查的嚴格程度。==在比較前會進行類型轉(zhuǎn)換,例如5=="5"返回true,而===要求值和類型都相同才會返回true,例如5==="5"返回false。使用場景上,===更安全應(yīng)優(yōu)先使用,==僅在需要類型轉(zhuǎn)換時使用。 如何在PHP( - , *, /,%)中執(zhí)行算術(shù)操作? Jun 19, 2025 pm 05:13 PM PHP中使用基本數(shù)學運算的方法如下:1.加法用 號,支持整數(shù)和浮點數(shù),也可用于變量,字符串數(shù)字會自動轉(zhuǎn)換但不推薦依賴;2.減法用-號,變量同理,類型轉(zhuǎn)換同樣適用;3.乘法用*號,適用于數(shù)字及類似字符串;4.除法用/號,需避免除以零,并注意結(jié)果可能是浮點數(shù);5.取模用%號,可用于判斷奇偶數(shù),處理負數(shù)時余數(shù)符號與被除數(shù)一致。正確使用這些運算符的關(guān)鍵在于確保數(shù)據(jù)類型清晰并處理好邊界情況。 如何與PHP的NOSQL數(shù)據(jù)庫(例如MongoDB,Redis)進行交互? Jun 19, 2025 am 01:07 AM 是的,PHP可以通過特定擴展或庫與MongoDB和Redis等NoSQL數(shù)據(jù)庫交互。首先,使用MongoDBPHP驅(qū)動(通過PECL或Composer安裝)創(chuàng)建客戶端實例并操作數(shù)據(jù)庫及集合,支持插入、查詢、聚合等操作;其次,使用Predis庫或phpredis擴展連接Redis,執(zhí)行鍵值設(shè)置與獲取,推薦phpredis用于高性能場景,Predis則便于快速部署;兩者均適用于生產(chǎn)環(huán)境且文檔完善。 我如何了解最新的PHP開發(fā)和最佳實踐? Jun 23, 2025 am 12:56 AM TostaycurrentwithPHPdevelopmentsandbestpractices,followkeynewssourceslikePHP.netandPHPWeekly,engagewithcommunitiesonforumsandconferences,keeptoolingupdatedandgraduallyadoptnewfeatures,andreadorcontributetoopensourceprojects.First,followreliablesource 什么是PHP,為什么它用于Web開發(fā)? Jun 23, 2025 am 12:55 AM PHPbecamepopularforwebdevelopmentduetoitseaseoflearning,seamlessintegrationwithHTML,widespreadhostingsupport,andalargeecosystemincludingframeworkslikeLaravelandCMSplatformslikeWordPress.Itexcelsinhandlingformsubmissions,managingusersessions,interacti 如何設(shè)置PHP時區(qū)? Jun 25, 2025 am 01:00 AM tosetTherightTimeZoneInphp,restate_default_timezone_set()functionAtthestArtofyourscriptWithavalIdidentIdentifiersuchas'america/new_york'.1.usedate_default_default_timezone_set_set() See all articles
Isn't that neat ?<\/p> 13. Check if directory is writable before writing any files
Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of \"debugging\" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on.<\/p>
Make sure that your application is as intelligent as possible and reports the most important information in the shortest time.<\/p>
$contents = \"All the content\";$file_path = \"\/var\/www\/project\/content.txt\";file_put_contents($file_path , $contents);<\/pre> That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons :<\/p> Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file.<\/p> $contents = \"All the content\";$dir = '\/var\/www\/project';$file_path = $dir . \"\/content.txt\";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die(\"Directory $dir is not writable, or does not exist. Please check\");}<\/pre> By doing this you get the accurate information that where is a file write failing and why<\/p> 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are \"accessible\" outside. Otherwise for example the files may be created by \"php\" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on.<\/p> \/\/ Read and write for owner, read for everybody elsechmod(\"\/somedir\/somefile\", 0644);\/\/ Everything for owner, read and execute for otherschmod(\"\/somedir\/somefile\", 0755);<\/pre> 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ \/\/Save the things}<\/pre> The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this :<\/p> if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ \/\/Save the things}<\/pre> Now you are free from the value the submit button<\/p> 16. Use static variables in function where they always have same value \/\/Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); \t echo \"Delaying for $sync_delay seconds...\"; sleep($sync_delay); echo \"Done \";}<\/pre> Instead use static variables as :<\/p> \/\/Delay for some timefunction delay(){ static $sync_delay = null;\t if($sync_delay == null) {\t$sync_delay = get_option('sync_delay'); }\t echo \"Delaying for $sync_delay seconds...\"; sleep($sync_delay); echo \"Done \";}<\/pre> 17. Don't use the $_SESSION variable directly Some simple examples are :<\/p> $_SESSION['username'] = $username;$username = $_SESSION['username'];<\/pre> But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain.<\/p> Hence use application specific keys with wrapper functions :<\/p> define('APP_ID' , 'abc_corp_ecommerce');\/\/Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}\/\/Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;}<\/pre> 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like :<\/p> function utility_a(){ \/\/This function does a utility thing like string processing}function utility_b(){ \/\/This function does nother utility thing like database processing}function utility_c(){ \/\/This function is ...}<\/pre> And you use the function throughout your application freely. You may want to wrap them into a class as static functions :<\/p> class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}\/\/and call them as $a = Utility::utility_a();$b = Utility::utility_b();<\/pre> One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else.<\/p> 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++;<\/pre> Its absolutely a WASTE.<\/p> Write<\/p> if($a == true){ $a_count++;}<\/pre> Dont try to make your code shorter by eating up syntax. Rather make your logic shorter.<\/p> Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this :<\/p> foreach($arr as $c => $v){\t$arr[$c] = trim($v);}<\/pre> But it can more cleaner with array_map :<\/p> $arr = array_map('trim' , $arr);<\/pre> This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more.<\/p> 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters.<\/p> The php filter extension provides simple way to validate or check values as being a valid 'something'.<\/p> 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate'];<\/pre> Its a good habit.<\/p> 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose<\/p> 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded :<\/p> $db_records_in_array_format; \/\/This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; \/\/2MB moresome_function($cc); \/\/Another 2MB ?<\/pre> The above thing is common when importing a csv file or exporting table to a csv file<\/p> Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays.<\/p> Consider passing them by reference , or storing them in a class variable :<\/p> $a = get_large_array();pass_to_function(&$a);<\/pre> by doing this the same variable (and not its copy) will be available to the function. Check documentation<\/p> class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { \/\/process $this->a }}<\/pre> unset them as soon as possible , so that memory is freed and rest of the script can relax.<\/p> Here is a simple demonstration of how assign by reference can save memory in some cases<\/p> ';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() \/ 1000000 . '';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() \/ 1000000 . '';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() \/ 1000000 . '';<\/pre> The output on a typical php 5.4 machine is :<\/p> Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 <\/p> So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more.<\/p> 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this :<\/p> function add_to_cart(){ $db = new Database(); $db->query(\"INSERT INTO cart .....\");}function empty_cart(){ $db = new Database(); $db->query(\"DELETE FROM cart .....\");}<\/pre> Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory.<\/p> Use the singleton pattern for special cases like database connection.<\/p> 26. Avoid direct SQL query , abstract it $query = \"INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')\";$db->query($query); \/\/call to mysqli_query()<\/pre> The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like:<\/p> All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord<\/p> It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries.<\/p> A very simple example of an activerecord insert function can be like this :<\/p> function insert_record($table_name , $data){ foreach($data as $key => $value) {\t\/\/mysqli_real_escape_string $data[$key] = $db->mres($value); }\t\t $fields = implode(',' , array_keys($data)); $values = \"'\" . implode(\"','\" , array_values($data)) . \"'\"; \/\/Final query\t $query = \"INSERT INTO {$table}($fields) VALUES($values)\";\t\t return $db->query($query);}\/\/data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);\/\/perform the INSERT queryinsert_record('users' , $data);<\/pre> The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse).<\/p> This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise.<\/p> 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again.<\/p> Benefits :<\/p> Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue.<\/p> Storing session in database makes many other things easier like:<\/p> Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines\/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example :<\/p> <\/head> <\/body><\/html><\/pre> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories.<\/p> Lets take an example<\/p> www.domain.com\/store\/home.php www.domain.com\/store\/products\/ipad.php<\/p> In home.php the following can be written :<\/p> Home<\/a>Ipad<\/a><\/pre> But in ipad.php the links have to be like this :<\/p> Home<\/a>Ipad<\/a><\/pre> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag.<\/p> <\/head>Home<\/a>Ipad<\/a><\/body><\/html><\/pre> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products\/ipad.php<\/p> 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing.<\/p> ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT);<\/pre> On production , the display should be disabled.<\/p> ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark.<\/p> After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set.<\/p> ini_set('log_errors' , '1');ini_set('error_log' , '\/path\/to\/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> Note :<\/p> 1. The path '\/path\/to\/errors.txt' should be writable by the web server for errors to be logged there.<\/p> 2. A separate error file is specified , otherwise all logs would go inside the apache\/web server error log and get mixed up with other apache errors.<\/p> 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver).<\/p> 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like \/var\/log dont have to searched.<\/p> 5. Dont set error_reporting to 0. It will not log anything then.<\/p> Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file.<\/p> Set 'display_errors=On' in php.ini on development machine<\/p> On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page.<\/p> Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work.<\/p> Set 'display_errors=Off' in php.ini on production machine<\/p> Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away.<\/p> 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results.<\/p> On a 64 bit machine you can see such output.<\/p> $ php -aInteractive shellphp > echo strtotime(\"0000-00-00 00:00:00\");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600<\/pre> But on a 32 bit machine all of them would give bool(false). Check here for more.<\/p> What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines.<\/p> 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this :<\/p> set_time_limit(30);\/\/Rest of the code<\/pre> It may not always work. Any execution that happens outside the script via system calls\/os functions like socket operations, database operations etc. will not be under control of set_time_limit.<\/p> So if a database operation takes lot of time or \"hangs\" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time.<\/p> 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it.<\/p> A better solution :<\/p> \/**\tMethod to execute a command in the terminal\tUses :\t1. system\t2. passthru\t3. exec\t4. shell_exec*\/function terminal($command){\t\/\/system\tif(function_exists('system'))\t{\t\tob_start();\t\tsystem($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/passthru\telse if(function_exists('passthru'))\t{\t\tob_start();\t\tpassthru($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/exec\telse if(function_exists('exec'))\t{\t\texec($command , $output , $return_var);\t\t$output = implode(\"\\n\" , $output);\t}\t\/\/shell_exec\telse if(function_exists('shell_exec'))\t{\t\t$output = shell_exec($command) ;\t}\telse\t{\t\t$output = 'Command execution not possible on this system';\t\t$return_var = 1;\t}\treturn array('output' => $output , 'status' => $return_var);}terminal('ls');<\/pre> The above function will execute the shell command using whichever function is available , keeping your code consistent.<\/p> 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user.<\/p> 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise.<\/p> Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind.<\/p> 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily.<\/p> Few popular libraries are :<\/p> mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference.<\/p> 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code.<\/p> Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community.<\/p> They contain user feedback, expert advice and useful code snippets. So check them out.<\/p> 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!!<\/p> 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc.<\/p> The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more<\/p> 1. Codeigniter 2. WordPress 3. Joomla CMS<\/p> 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment.<\/p> Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster.<\/p> Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free.<\/p> "} 社區(qū) 文章 合集 問答 學習 課程 編程詞典 工具庫 開發(fā)工具 網(wǎng)站源碼 PHP 庫 JS特效 網(wǎng)站素材 擴展插件 AI工具 休閑 游戲下載 游戲教程 簡體中文 簡體中文 English 繁體中文 日本語 ??? Melayu Fran?ais Deutsch Login singup 首頁 后端開發(fā) php教程 40+ Useful Php tips for beginners ? Part 1 40+ Useful Php tips for beginners ? Part 1 WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB Jun 23, 2016 pm 02:37 PM PHP學習指南 http://www.binarytides.com/category/php-2/tutorial/ In this series we are going to look into some useful tips and techniques that can be used to improve and optimise your php code. Note that these php tips are meant for beginners and not those who are already using mvc frameworks etc. The Techniques 1. Do not use relative paths , instead define a ROOT path Its quite common to see such lines : require_once('http://www.cnblogs.com/lib/some_class.php'); This approach has many drawbacks : It first searches for directories specified in the include paths of php , then looks from the current directory. So many directories are checked. When a script is included by another script in a different directory , its base directory changes to that of the including script. Another issue , is that when a script is being run from cron , it may not have its parent directory as the working directory. So its a good idea to have absolute paths : define('ROOT' , '/var/www/project/');require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code Now this is an absolute path and will always stay constant. But we can improve this further. The directory /var/www/project can change , so do we change it everytime ? No instead we make it portable using magic constants like __FILE__ . Take a closer look : //suppose your script is /var/www/project/index.php//Then __FILE__ will always have that full path.define('ROOT' , pathinfo(__FILE__, PATHINFO_DIRNAME));require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code So now even if you shift your project to a different directory , like moving it to an online server , the same code will run without any changes. 2. Dont use require , include , require_once or include_once Your script could be including various files on top , like class libraries , files for utility and helper functions etc like this : require_once('lib/Database.php');require_once('lib/Mail.php');require_once('helpers/utitlity_functions.php'); This is rather primitive. The code needs to be more flexible. Write up helper functions to include things more easily. Lets take an example : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); require_once( $path ); }load_class('Database');load_class('Mail'); See any difference ? You must. It does not need any more explanation. You can improve this further if you wish to like this : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); if(file_exists($path)) { require_once( $path ); }} There are a lot of things that can be done with this : Search multiple directories for the same class file. Change the directory containing class files easily , without breaking the code anywhere. Use similar functions for loading files that contain helper functions , html content etc. 3. Maintain debugging environment in your application During development we echo database queries , dump variables which are creating problems , and then once the problem is solved , we comment them or erase them. But its a good idea to let everything stay and help in the long run On your development machine you can do this : define('ENVIRONMENT' , 'development');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } And on the server you can do this : define('ENVIRONMENT' , 'production');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } 4. Propagate status messages via session Status messages are those messages that are generated after doing a task. <?phpif($wrong_username || $wrong_password){ $msg = 'Invalid username or password';}?><html><body><?php echo $msg; ?><form>...</form></body></html> Code like that is common. Using variables to show status messages has limitations. They cannot be send via redirects (unless you propagate them as GET variables to the next script , which is very silly). In large scripts there might be multiple messages etc. Best way is to use session to propagate them (even if on same page). For this there has to be a session_start on every page. function set_flash($msg){ $_SESSION['message'] = $msg;}function get_flash(){ $msg = $_SESSION['message']; unset($_SESSION['message']); return $msg;} and in your script : <?phpif($wrong_username || $wrong_password){ set_flash('Invalid username or password');}?><html><body>Status is : <?php echo get_flash(); ?><form>...</form></body></html> 5. Make your functions flexible function add_to_cart($item_id , $qty){ $_SESSION['cart'][$item_id] = $qty;}add_to_cart( 'IPHONE3' , 2 ); When adding a single item you use the above function. When adding multiple items , will you create another function ? NO. Just make the function flexible enough to take different kinds of parameters. Have a closer look : function add_to_cart($item_id , $qty){ if(!is_array($item_id)) { $_SESSION['cart'][$item_id] = $qty; } else { foreach($item_id as $i_id => $qty) { $_SESSION['cart'][$i_id] = $qty; } }}add_to_cart( 'IPHONE3' , 2 );add_to_cart( array('IPHONE3' => 2 , 'IPAD' => 5) ); So now the same function can accept different kinds of output. The above can be applied in lots of places to make your code more agile. 6. Omit the closing php tag if it is the last thing in a script I wonder why this tip is omitted from so many blog posts on php tips. <?phpecho "Hello";//Now dont close this tag This will save you lots of problem. Lets take an example : A class file super_class.php <?phpclass super_class{ function super_function() { //super code }}?>//super extra character after the closing tag Now index.php require_once('super_class.php');//echo an image or pdf , or set the cookies or session data And you will get Headers already send error. Why ? because the "super extra character" has been echoed , and all headers went along with that. Now you start debugging. You may have to waste many hours to find the super extra space. Hence make it a habit to omit the closing tag : <?phpclass super_class{ function super_function() { //super code }}//No closing tag Thats better. 7. Collect all output at one place , and output at one shot to the browser This is called output buffering. Lets say you have been echoing content from different functions like this : function print_header(){ echo "<div id='header'>Site Log and Login links</div>";}function print_footer(){ echo "<div id='footer'>Site was made by me</div>";}print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}print_footer(); Instead of doing like that , first collect all output in one place. You can either store it inside variables in the functions or use ob_start and ob_end_clean. So now it should look like function print_header(){ $o = "<div id='header'>Site Log and Login links</div>"; return $o;}function print_footer(){ $o = "<div id='footer'>Site was made by me</div>"; return $o;}echo print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}echo print_footer(); So why should you do output buffering : You can change the output just before sending it to browser if you need to. Think about doing some str_replaces , or may be preg_replaces or may be adding some extra html at the end like profiler/debugger output Its a bad idea to send output to browser and do php processing at the same time. Have you ever seen a website where there is a Fatal error in the sidebar or in a box in the middle of the screen. You know why that happens ? Because processing and output are being mixed. 8. Send correct mime types via header when outputting non-html content Lets echo some xml. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataecho $xml; Works fine. But it needs some improvement. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataheader("content-type: text/xml");echo $xml; Note that header line. That line tells the browser that the content is xml content. So the browser can handle it correctly. Many javascript libraries also rely on header information. Similarly for javascript , css , jpg image , png image : Javascript header("content-type: application/x-javascript");echo "var a = 10"; CSS header("content-type: text/css");echo "#div id { background:#000; }"; 9. Set the correct character encoding for a mysql connection Ever faced a problem that unicode/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation. $host = 'localhost';$username = 'root';$password = 'super_secret';//Attempt to connect to database$c = mysqli_connect($host , $username, $password); //Check connection validityif (!$c) { die ("Could not connect to the database host: <br />". mysqli_connect_error());} //Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){ die('mysqli_set_charset() failed');} Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application. Otherwise what will happen ? You will see lots of boxes and ???????? in non english text. 10. Use htmlentities with the correct characterset option Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc. $value = htmlentities($this->value , ENT_QUOTES , 'UTF-8'); Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual. 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php. Use apache mod_gzip/mod_deflate to compress content via the .htaccess file. 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php. $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= "'$image' ,";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;//Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,]; Be smart. use json_encode : $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;//Output is : var images = ["myself.png","friends.png","colleagues.png"] Isn't that neat ? 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of "debugging" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on. Make sure that your application is as intelligent as possible and reports the most important information in the shortest time. $contents = "All the content";$file_path = "/var/www/project/content.txt";file_put_contents($file_path , $contents); That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons : Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file. $contents = "All the content";$dir = '/var/www/project';$file_path = $dir . "/content.txt";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die("Directory $dir is not writable, or does not exist. Please check");} By doing this you get the accurate information that where is a file write failing and why 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are "accessible" outside. Otherwise for example the files may be created by "php" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on. // Read and write for owner, read for everybody elsechmod("/somedir/somefile", 0644);// Everything for owner, read and execute for otherschmod("/somedir/somefile", 0755); 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ //Save the things} The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this : if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ //Save the things} Now you are free from the value the submit button 16. Use static variables in function where they always have same value //Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} Instead use static variables as : //Delay for some timefunction delay(){ static $sync_delay = null; if($sync_delay == null) { $sync_delay = get_option('sync_delay'); } echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} 17. Don't use the $_SESSION variable directly Some simple examples are : $_SESSION['username'] = $username;$username = $_SESSION['username']; But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain. Hence use application specific keys with wrapper functions : define('APP_ID' , 'abc_corp_ecommerce');//Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}//Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;} 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like : function utility_a(){ //This function does a utility thing like string processing}function utility_b(){ //This function does nother utility thing like database processing}function utility_c(){ //This function is ...} And you use the function throughout your application freely. You may want to wrap them into a class as static functions : class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}//and call them as $a = Utility::utility_a();$b = Utility::utility_b(); One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else. 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++; Its absolutely a WASTE. Write if($a == true){ $a_count++;} Dont try to make your code shorter by eating up syntax. Rather make your logic shorter. Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this : foreach($arr as $c => $v){ $arr[$c] = trim($v);} But it can more cleaner with array_map : $arr = array_map('trim' , $arr); This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more. 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters. The php filter extension provides simple way to validate or check values as being a valid 'something'. 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate']; Its a good habit. 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded : $db_records_in_array_format; //This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; //2MB moresome_function($cc); //Another 2MB ? The above thing is common when importing a csv file or exporting table to a csv file Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays. Consider passing them by reference , or storing them in a class variable : $a = get_large_array();pass_to_function(&$a); by doing this the same variable (and not its copy) will be available to the function. Check documentation class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { //process $this->a }} unset them as soon as possible , so that memory is freed and rest of the script can relax. Here is a simple demonstration of how assign by reference can save memory in some cases <?phpini_set('display_errors' , true);error_reporting(E_ALL);$a = array();for($i = 0; $i < 100000 ; $i++){ $a[$i] = 'A'.$i;}echo 'Memory usage in MB : '. memory_get_usage() / 1000000 . '<br />';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() / 1000000 . '<br />';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() / 1000000 . '<br />';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() / 1000000 . '<br />'; The output on a typical php 5.4 machine is : Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more. 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this : function add_to_cart(){ $db = new Database(); $db->query("INSERT INTO cart .....");}function empty_cart(){ $db = new Database(); $db->query("DELETE FROM cart .....");} Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory. Use the singleton pattern for special cases like database connection. 26. Avoid direct SQL query , abstract it $query = "INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')";$db->query($query); //call to mysqli_query() The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like: All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries. A very simple example of an activerecord insert function can be like this : function insert_record($table_name , $data){ foreach($data as $key => $value) { //mysqli_real_escape_string $data[$key] = $db->mres($value); } $fields = implode(',' , array_keys($data)); $values = "'" . implode("','" , array_values($data)) . "'"; //Final query $query = "INSERT INTO {$table}($fields) VALUES($values)"; return $db->query($query);}//data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);//perform the INSERT queryinsert_record('users' , $data); The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse). This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise. 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again. Benefits : Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue. Storing session in database makes many other things easier like: Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example : <head> <base href="http://www.domain.com/store/"></head><body> <img src="/static/imghw/default1.png" data-src="happy.jpg" class="lazy" / alt="40+ Useful Php tips for beginners ? Part 1" ></body></html> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories. Lets take an example www.domain.com/store/home.php www.domain.com/store/products/ipad.php In home.php the following can be written : <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> But in ipad.php the links have to be like this : <a href="../home.php">Home</a><a href="ipad.php">Ipad</a> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag. <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products/ipad.php 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing. ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT); On production , the display should be disabled. ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark. After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set. ini_set('log_errors' , '1');ini_set('error_log' , '/path/to/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); Note : 1. The path '/path/to/errors.txt' should be writable by the web server for errors to be logged there. 2. A separate error file is specified , otherwise all logs would go inside the apache/web server error log and get mixed up with other apache errors. 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver). 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like /var/log dont have to searched. 5. Dont set error_reporting to 0. It will not log anything then. Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file. Set 'display_errors=On' in php.ini on development machine On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page. Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work. Set 'display_errors=Off' in php.ini on production machine Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away. 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results. On a 64 bit machine you can see such output. $ php -aInteractive shellphp > echo strtotime("0000-00-00 00:00:00");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600 But on a 32 bit machine all of them would give bool(false). Check here for more. What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines. 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this : set_time_limit(30);//Rest of the code It may not always work. Any execution that happens outside the script via system calls/os functions like socket operations, database operations etc. will not be under control of set_time_limit. So if a database operation takes lot of time or "hangs" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time. 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it. A better solution : /** Method to execute a command in the terminal Uses : 1. system 2. passthru 3. exec 4. shell_exec*/function terminal($command){ //system if(function_exists('system')) { ob_start(); system($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //passthru else if(function_exists('passthru')) { ob_start(); passthru($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //exec else if(function_exists('exec')) { exec($command , $output , $return_var); $output = implode("\n" , $output); } //shell_exec else if(function_exists('shell_exec')) { $output = shell_exec($command) ; } else { $output = 'Command execution not possible on this system'; $return_var = 1; } return array('output' => $output , 'status' => $return_var);}terminal('ls'); The above function will execute the shell command using whichever function is available , keeping your code consistent. 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user. 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise. Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind. 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily. Few popular libraries are : mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference. 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code. Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community. They contain user feedback, expert advice and useful code snippets. So check them out. 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!! 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc. The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more 1. Codeigniter 2. WordPress 3. Joomla CMS 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment. Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster. Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free. 本站聲明 本文內(nèi)容由網(wǎng)友自發(fā)貢獻,版權(quán)歸原作者所有,本站不承擔相應(yīng)法律責任。如您發(fā)現(xiàn)有涉嫌抄襲侵權(quán)的內(nèi)容,請聯(lián)系admin@php.cn 熱AI工具 Undress AI Tool 免費脫衣服圖片 Undresser.AI Undress 人工智能驅(qū)動的應(yīng)用程序,用于創(chuàng)建逼真的裸體照片 AI Clothes Remover 用于從照片中去除衣服的在線人工智能工具。 Clothoff.io AI脫衣機 Video Face Swap 使用我們完全免費的人工智能換臉工具輕松在任何視頻中換臉! 顯示更多 熱門文章 指南:恒星刀片保存文件位置/保存文件丟失/不保存 4 周前 By DDD Oguri Cap Build Guide |漂亮的德比志 2 周前 By Jack chen Agnes Tachyon Build Guide |漂亮的德比志 1 周前 By Jack chen 沙丘:覺醒 - 高級行星學家Quest演練 4 周前 By Jack chen 約會一切:德克和哈珀關(guān)系指南 4 周前 By Jack chen 顯示更多 熱工具 記事本++7.3.1 好用且免費的代碼編輯器 SublimeText3漢化版 中文版,非常好用 禪工作室 13.0.1 功能強大的PHP集成開發(fā)環(huán)境 Dreamweaver CS6 視覺化網(wǎng)頁開發(fā)工具 SublimeText3 Mac版 神級代碼編輯軟件(SublimeText3) 顯示更多 熱門話題 gmail郵箱登陸入口在哪里 8638 17 Java教程 1783 16 CakePHP 教程 1728 56 Laravel 教程 1578 28 PHP教程 1442 31 顯示更多 Related knowledge 如何在PHP中實施身份驗證和授權(quán)? Jun 20, 2025 am 01:03 AM tosecurelyhandleauthenticationandationallizationInphp,lofterTheSesteps:1.AlwaysHashPasswordSwithPassword_hash()andverifyusingspasspassword_verify(),usepreparedStatatementStopreventsqlineptions,andStoreSeruserDatain usseruserDatain $ _sessiveferterlogin.2.implementrole-2.imaccessccsccccccccccccccccccccccccc. 如何在PHP中安全地處理文件上傳? Jun 19, 2025 am 01:05 AM 要安全處理PHP中的文件上傳,核心在于驗證文件類型、重命名文件并限制權(quán)限。1.使用finfo_file()檢查真實MIME類型,僅允許特定類型如image/jpeg;2.用uniqid()生成隨機文件名,存儲至非Web根目錄;3.通過php.ini和HTML表單限制文件大小,設(shè)置目錄權(quán)限為0755;4.使用ClamAV掃描惡意軟件,增強安全性。這些步驟有效防止安全漏洞,確保文件上傳過程安全可靠。 PHP中==(松散比較)和===(嚴格的比較)之間有什么區(qū)別? Jun 19, 2025 am 01:07 AM 在PHP中,==與===的主要區(qū)別在于類型檢查的嚴格程度。==在比較前會進行類型轉(zhuǎn)換,例如5=="5"返回true,而===要求值和類型都相同才會返回true,例如5==="5"返回false。使用場景上,===更安全應(yīng)優(yōu)先使用,==僅在需要類型轉(zhuǎn)換時使用。 如何在PHP( - , *, /,%)中執(zhí)行算術(shù)操作? Jun 19, 2025 pm 05:13 PM PHP中使用基本數(shù)學運算的方法如下:1.加法用 號,支持整數(shù)和浮點數(shù),也可用于變量,字符串數(shù)字會自動轉(zhuǎn)換但不推薦依賴;2.減法用-號,變量同理,類型轉(zhuǎn)換同樣適用;3.乘法用*號,適用于數(shù)字及類似字符串;4.除法用/號,需避免除以零,并注意結(jié)果可能是浮點數(shù);5.取模用%號,可用于判斷奇偶數(shù),處理負數(shù)時余數(shù)符號與被除數(shù)一致。正確使用這些運算符的關(guān)鍵在于確保數(shù)據(jù)類型清晰并處理好邊界情況。 如何與PHP的NOSQL數(shù)據(jù)庫(例如MongoDB,Redis)進行交互? Jun 19, 2025 am 01:07 AM 是的,PHP可以通過特定擴展或庫與MongoDB和Redis等NoSQL數(shù)據(jù)庫交互。首先,使用MongoDBPHP驅(qū)動(通過PECL或Composer安裝)創(chuàng)建客戶端實例并操作數(shù)據(jù)庫及集合,支持插入、查詢、聚合等操作;其次,使用Predis庫或phpredis擴展連接Redis,執(zhí)行鍵值設(shè)置與獲取,推薦phpredis用于高性能場景,Predis則便于快速部署;兩者均適用于生產(chǎn)環(huán)境且文檔完善。 我如何了解最新的PHP開發(fā)和最佳實踐? Jun 23, 2025 am 12:56 AM TostaycurrentwithPHPdevelopmentsandbestpractices,followkeynewssourceslikePHP.netandPHPWeekly,engagewithcommunitiesonforumsandconferences,keeptoolingupdatedandgraduallyadoptnewfeatures,andreadorcontributetoopensourceprojects.First,followreliablesource 什么是PHP,為什么它用于Web開發(fā)? Jun 23, 2025 am 12:55 AM PHPbecamepopularforwebdevelopmentduetoitseaseoflearning,seamlessintegrationwithHTML,widespreadhostingsupport,andalargeecosystemincludingframeworkslikeLaravelandCMSplatformslikeWordPress.Itexcelsinhandlingformsubmissions,managingusersessions,interacti 如何設(shè)置PHP時區(qū)? Jun 25, 2025 am 01:00 AM tosetTherightTimeZoneInphp,restate_default_timezone_set()functionAtthestArtofyourscriptWithavalIdidentIdentifiersuchas'america/new_york'.1.usedate_default_default_timezone_set_set() See all articles
That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons :<\/p> Parent directory does not exist Directory exists , but is not writable File locked for writing ?
So its better to make everything clear before writing out to a file.<\/p>
$contents = \"All the content\";$dir = '\/var\/www\/project';$file_path = $dir . \"\/content.txt\";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die(\"Directory $dir is not writable, or does not exist. Please check\");}<\/pre> By doing this you get the accurate information that where is a file write failing and why<\/p> 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are \"accessible\" outside. Otherwise for example the files may be created by \"php\" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on.<\/p> \/\/ Read and write for owner, read for everybody elsechmod(\"\/somedir\/somefile\", 0644);\/\/ Everything for owner, read and execute for otherschmod(\"\/somedir\/somefile\", 0755);<\/pre> 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ \/\/Save the things}<\/pre> The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this :<\/p> if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ \/\/Save the things}<\/pre> Now you are free from the value the submit button<\/p> 16. Use static variables in function where they always have same value \/\/Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); \t echo \"Delaying for $sync_delay seconds...\"; sleep($sync_delay); echo \"Done \";}<\/pre> Instead use static variables as :<\/p> \/\/Delay for some timefunction delay(){ static $sync_delay = null;\t if($sync_delay == null) {\t$sync_delay = get_option('sync_delay'); }\t echo \"Delaying for $sync_delay seconds...\"; sleep($sync_delay); echo \"Done \";}<\/pre> 17. Don't use the $_SESSION variable directly Some simple examples are :<\/p> $_SESSION['username'] = $username;$username = $_SESSION['username'];<\/pre> But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain.<\/p> Hence use application specific keys with wrapper functions :<\/p> define('APP_ID' , 'abc_corp_ecommerce');\/\/Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}\/\/Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;}<\/pre> 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like :<\/p> function utility_a(){ \/\/This function does a utility thing like string processing}function utility_b(){ \/\/This function does nother utility thing like database processing}function utility_c(){ \/\/This function is ...}<\/pre> And you use the function throughout your application freely. You may want to wrap them into a class as static functions :<\/p> class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}\/\/and call them as $a = Utility::utility_a();$b = Utility::utility_b();<\/pre> One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else.<\/p> 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++;<\/pre> Its absolutely a WASTE.<\/p> Write<\/p> if($a == true){ $a_count++;}<\/pre> Dont try to make your code shorter by eating up syntax. Rather make your logic shorter.<\/p> Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this :<\/p> foreach($arr as $c => $v){\t$arr[$c] = trim($v);}<\/pre> But it can more cleaner with array_map :<\/p> $arr = array_map('trim' , $arr);<\/pre> This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more.<\/p> 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters.<\/p> The php filter extension provides simple way to validate or check values as being a valid 'something'.<\/p> 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate'];<\/pre> Its a good habit.<\/p> 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose<\/p> 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded :<\/p> $db_records_in_array_format; \/\/This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; \/\/2MB moresome_function($cc); \/\/Another 2MB ?<\/pre> The above thing is common when importing a csv file or exporting table to a csv file<\/p> Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays.<\/p> Consider passing them by reference , or storing them in a class variable :<\/p> $a = get_large_array();pass_to_function(&$a);<\/pre> by doing this the same variable (and not its copy) will be available to the function. Check documentation<\/p> class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { \/\/process $this->a }}<\/pre> unset them as soon as possible , so that memory is freed and rest of the script can relax.<\/p> Here is a simple demonstration of how assign by reference can save memory in some cases<\/p> ';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() \/ 1000000 . '';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() \/ 1000000 . '';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() \/ 1000000 . '';<\/pre> The output on a typical php 5.4 machine is :<\/p> Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 <\/p> So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more.<\/p> 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this :<\/p> function add_to_cart(){ $db = new Database(); $db->query(\"INSERT INTO cart .....\");}function empty_cart(){ $db = new Database(); $db->query(\"DELETE FROM cart .....\");}<\/pre> Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory.<\/p> Use the singleton pattern for special cases like database connection.<\/p> 26. Avoid direct SQL query , abstract it $query = \"INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')\";$db->query($query); \/\/call to mysqli_query()<\/pre> The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like:<\/p> All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord<\/p> It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries.<\/p> A very simple example of an activerecord insert function can be like this :<\/p> function insert_record($table_name , $data){ foreach($data as $key => $value) {\t\/\/mysqli_real_escape_string $data[$key] = $db->mres($value); }\t\t $fields = implode(',' , array_keys($data)); $values = \"'\" . implode(\"','\" , array_values($data)) . \"'\"; \/\/Final query\t $query = \"INSERT INTO {$table}($fields) VALUES($values)\";\t\t return $db->query($query);}\/\/data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);\/\/perform the INSERT queryinsert_record('users' , $data);<\/pre> The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse).<\/p> This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise.<\/p> 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again.<\/p> Benefits :<\/p> Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue.<\/p> Storing session in database makes many other things easier like:<\/p> Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines\/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example :<\/p> <\/head> <\/body><\/html><\/pre> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories.<\/p> Lets take an example<\/p> www.domain.com\/store\/home.php www.domain.com\/store\/products\/ipad.php<\/p> In home.php the following can be written :<\/p> Home<\/a>Ipad<\/a><\/pre> But in ipad.php the links have to be like this :<\/p> Home<\/a>Ipad<\/a><\/pre> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag.<\/p> <\/head>Home<\/a>Ipad<\/a><\/body><\/html><\/pre> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products\/ipad.php<\/p> 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing.<\/p> ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT);<\/pre> On production , the display should be disabled.<\/p> ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark.<\/p> After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set.<\/p> ini_set('log_errors' , '1');ini_set('error_log' , '\/path\/to\/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> Note :<\/p> 1. The path '\/path\/to\/errors.txt' should be writable by the web server for errors to be logged there.<\/p> 2. A separate error file is specified , otherwise all logs would go inside the apache\/web server error log and get mixed up with other apache errors.<\/p> 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver).<\/p> 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like \/var\/log dont have to searched.<\/p> 5. Dont set error_reporting to 0. It will not log anything then.<\/p> Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file.<\/p> Set 'display_errors=On' in php.ini on development machine<\/p> On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page.<\/p> Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work.<\/p> Set 'display_errors=Off' in php.ini on production machine<\/p> Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away.<\/p> 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results.<\/p> On a 64 bit machine you can see such output.<\/p> $ php -aInteractive shellphp > echo strtotime(\"0000-00-00 00:00:00\");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600<\/pre> But on a 32 bit machine all of them would give bool(false). Check here for more.<\/p> What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines.<\/p> 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this :<\/p> set_time_limit(30);\/\/Rest of the code<\/pre> It may not always work. Any execution that happens outside the script via system calls\/os functions like socket operations, database operations etc. will not be under control of set_time_limit.<\/p> So if a database operation takes lot of time or \"hangs\" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time.<\/p> 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it.<\/p> A better solution :<\/p> \/**\tMethod to execute a command in the terminal\tUses :\t1. system\t2. passthru\t3. exec\t4. shell_exec*\/function terminal($command){\t\/\/system\tif(function_exists('system'))\t{\t\tob_start();\t\tsystem($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/passthru\telse if(function_exists('passthru'))\t{\t\tob_start();\t\tpassthru($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/exec\telse if(function_exists('exec'))\t{\t\texec($command , $output , $return_var);\t\t$output = implode(\"\\n\" , $output);\t}\t\/\/shell_exec\telse if(function_exists('shell_exec'))\t{\t\t$output = shell_exec($command) ;\t}\telse\t{\t\t$output = 'Command execution not possible on this system';\t\t$return_var = 1;\t}\treturn array('output' => $output , 'status' => $return_var);}terminal('ls');<\/pre> The above function will execute the shell command using whichever function is available , keeping your code consistent.<\/p> 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user.<\/p> 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise.<\/p> Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind.<\/p> 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily.<\/p> Few popular libraries are :<\/p> mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference.<\/p> 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code.<\/p> Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community.<\/p> They contain user feedback, expert advice and useful code snippets. So check them out.<\/p> 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!!<\/p> 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc.<\/p> The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more<\/p> 1. Codeigniter 2. WordPress 3. Joomla CMS<\/p> 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment.<\/p> Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster.<\/p> Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free.<\/p> "} 社區(qū) 文章 合集 問答 學習 課程 編程詞典 工具庫 開發(fā)工具 網(wǎng)站源碼 PHP 庫 JS特效 網(wǎng)站素材 擴展插件 AI工具 休閑 游戲下載 游戲教程 簡體中文 簡體中文 English 繁體中文 日本語 ??? Melayu Fran?ais Deutsch Login singup 首頁 后端開發(fā) php教程 40+ Useful Php tips for beginners ? Part 1 40+ Useful Php tips for beginners ? Part 1 WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB Jun 23, 2016 pm 02:37 PM PHP學習指南 http://www.binarytides.com/category/php-2/tutorial/ In this series we are going to look into some useful tips and techniques that can be used to improve and optimise your php code. Note that these php tips are meant for beginners and not those who are already using mvc frameworks etc. The Techniques 1. Do not use relative paths , instead define a ROOT path Its quite common to see such lines : require_once('http://www.cnblogs.com/lib/some_class.php'); This approach has many drawbacks : It first searches for directories specified in the include paths of php , then looks from the current directory. So many directories are checked. When a script is included by another script in a different directory , its base directory changes to that of the including script. Another issue , is that when a script is being run from cron , it may not have its parent directory as the working directory. So its a good idea to have absolute paths : define('ROOT' , '/var/www/project/');require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code Now this is an absolute path and will always stay constant. But we can improve this further. The directory /var/www/project can change , so do we change it everytime ? No instead we make it portable using magic constants like __FILE__ . Take a closer look : //suppose your script is /var/www/project/index.php//Then __FILE__ will always have that full path.define('ROOT' , pathinfo(__FILE__, PATHINFO_DIRNAME));require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code So now even if you shift your project to a different directory , like moving it to an online server , the same code will run without any changes. 2. Dont use require , include , require_once or include_once Your script could be including various files on top , like class libraries , files for utility and helper functions etc like this : require_once('lib/Database.php');require_once('lib/Mail.php');require_once('helpers/utitlity_functions.php'); This is rather primitive. The code needs to be more flexible. Write up helper functions to include things more easily. Lets take an example : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); require_once( $path ); }load_class('Database');load_class('Mail'); See any difference ? You must. It does not need any more explanation. You can improve this further if you wish to like this : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); if(file_exists($path)) { require_once( $path ); }} There are a lot of things that can be done with this : Search multiple directories for the same class file. Change the directory containing class files easily , without breaking the code anywhere. Use similar functions for loading files that contain helper functions , html content etc. 3. Maintain debugging environment in your application During development we echo database queries , dump variables which are creating problems , and then once the problem is solved , we comment them or erase them. But its a good idea to let everything stay and help in the long run On your development machine you can do this : define('ENVIRONMENT' , 'development');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } And on the server you can do this : define('ENVIRONMENT' , 'production');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } 4. Propagate status messages via session Status messages are those messages that are generated after doing a task. <?phpif($wrong_username || $wrong_password){ $msg = 'Invalid username or password';}?><html><body><?php echo $msg; ?><form>...</form></body></html> Code like that is common. Using variables to show status messages has limitations. They cannot be send via redirects (unless you propagate them as GET variables to the next script , which is very silly). In large scripts there might be multiple messages etc. Best way is to use session to propagate them (even if on same page). For this there has to be a session_start on every page. function set_flash($msg){ $_SESSION['message'] = $msg;}function get_flash(){ $msg = $_SESSION['message']; unset($_SESSION['message']); return $msg;} and in your script : <?phpif($wrong_username || $wrong_password){ set_flash('Invalid username or password');}?><html><body>Status is : <?php echo get_flash(); ?><form>...</form></body></html> 5. Make your functions flexible function add_to_cart($item_id , $qty){ $_SESSION['cart'][$item_id] = $qty;}add_to_cart( 'IPHONE3' , 2 ); When adding a single item you use the above function. When adding multiple items , will you create another function ? NO. Just make the function flexible enough to take different kinds of parameters. Have a closer look : function add_to_cart($item_id , $qty){ if(!is_array($item_id)) { $_SESSION['cart'][$item_id] = $qty; } else { foreach($item_id as $i_id => $qty) { $_SESSION['cart'][$i_id] = $qty; } }}add_to_cart( 'IPHONE3' , 2 );add_to_cart( array('IPHONE3' => 2 , 'IPAD' => 5) ); So now the same function can accept different kinds of output. The above can be applied in lots of places to make your code more agile. 6. Omit the closing php tag if it is the last thing in a script I wonder why this tip is omitted from so many blog posts on php tips. <?phpecho "Hello";//Now dont close this tag This will save you lots of problem. Lets take an example : A class file super_class.php <?phpclass super_class{ function super_function() { //super code }}?>//super extra character after the closing tag Now index.php require_once('super_class.php');//echo an image or pdf , or set the cookies or session data And you will get Headers already send error. Why ? because the "super extra character" has been echoed , and all headers went along with that. Now you start debugging. You may have to waste many hours to find the super extra space. Hence make it a habit to omit the closing tag : <?phpclass super_class{ function super_function() { //super code }}//No closing tag Thats better. 7. Collect all output at one place , and output at one shot to the browser This is called output buffering. Lets say you have been echoing content from different functions like this : function print_header(){ echo "<div id='header'>Site Log and Login links</div>";}function print_footer(){ echo "<div id='footer'>Site was made by me</div>";}print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}print_footer(); Instead of doing like that , first collect all output in one place. You can either store it inside variables in the functions or use ob_start and ob_end_clean. So now it should look like function print_header(){ $o = "<div id='header'>Site Log and Login links</div>"; return $o;}function print_footer(){ $o = "<div id='footer'>Site was made by me</div>"; return $o;}echo print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}echo print_footer(); So why should you do output buffering : You can change the output just before sending it to browser if you need to. Think about doing some str_replaces , or may be preg_replaces or may be adding some extra html at the end like profiler/debugger output Its a bad idea to send output to browser and do php processing at the same time. Have you ever seen a website where there is a Fatal error in the sidebar or in a box in the middle of the screen. You know why that happens ? Because processing and output are being mixed. 8. Send correct mime types via header when outputting non-html content Lets echo some xml. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataecho $xml; Works fine. But it needs some improvement. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataheader("content-type: text/xml");echo $xml; Note that header line. That line tells the browser that the content is xml content. So the browser can handle it correctly. Many javascript libraries also rely on header information. Similarly for javascript , css , jpg image , png image : Javascript header("content-type: application/x-javascript");echo "var a = 10"; CSS header("content-type: text/css");echo "#div id { background:#000; }"; 9. Set the correct character encoding for a mysql connection Ever faced a problem that unicode/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation. $host = 'localhost';$username = 'root';$password = 'super_secret';//Attempt to connect to database$c = mysqli_connect($host , $username, $password); //Check connection validityif (!$c) { die ("Could not connect to the database host: <br />". mysqli_connect_error());} //Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){ die('mysqli_set_charset() failed');} Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application. Otherwise what will happen ? You will see lots of boxes and ???????? in non english text. 10. Use htmlentities with the correct characterset option Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc. $value = htmlentities($this->value , ENT_QUOTES , 'UTF-8'); Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual. 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php. Use apache mod_gzip/mod_deflate to compress content via the .htaccess file. 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php. $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= "'$image' ,";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;//Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,]; Be smart. use json_encode : $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;//Output is : var images = ["myself.png","friends.png","colleagues.png"] Isn't that neat ? 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of "debugging" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on. Make sure that your application is as intelligent as possible and reports the most important information in the shortest time. $contents = "All the content";$file_path = "/var/www/project/content.txt";file_put_contents($file_path , $contents); That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons : Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file. $contents = "All the content";$dir = '/var/www/project';$file_path = $dir . "/content.txt";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die("Directory $dir is not writable, or does not exist. Please check");} By doing this you get the accurate information that where is a file write failing and why 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are "accessible" outside. Otherwise for example the files may be created by "php" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on. // Read and write for owner, read for everybody elsechmod("/somedir/somefile", 0644);// Everything for owner, read and execute for otherschmod("/somedir/somefile", 0755); 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ //Save the things} The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this : if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ //Save the things} Now you are free from the value the submit button 16. Use static variables in function where they always have same value //Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} Instead use static variables as : //Delay for some timefunction delay(){ static $sync_delay = null; if($sync_delay == null) { $sync_delay = get_option('sync_delay'); } echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} 17. Don't use the $_SESSION variable directly Some simple examples are : $_SESSION['username'] = $username;$username = $_SESSION['username']; But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain. Hence use application specific keys with wrapper functions : define('APP_ID' , 'abc_corp_ecommerce');//Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}//Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;} 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like : function utility_a(){ //This function does a utility thing like string processing}function utility_b(){ //This function does nother utility thing like database processing}function utility_c(){ //This function is ...} And you use the function throughout your application freely. You may want to wrap them into a class as static functions : class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}//and call them as $a = Utility::utility_a();$b = Utility::utility_b(); One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else. 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++; Its absolutely a WASTE. Write if($a == true){ $a_count++;} Dont try to make your code shorter by eating up syntax. Rather make your logic shorter. Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this : foreach($arr as $c => $v){ $arr[$c] = trim($v);} But it can more cleaner with array_map : $arr = array_map('trim' , $arr); This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more. 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters. The php filter extension provides simple way to validate or check values as being a valid 'something'. 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate']; Its a good habit. 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded : $db_records_in_array_format; //This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; //2MB moresome_function($cc); //Another 2MB ? The above thing is common when importing a csv file or exporting table to a csv file Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays. Consider passing them by reference , or storing them in a class variable : $a = get_large_array();pass_to_function(&$a); by doing this the same variable (and not its copy) will be available to the function. Check documentation class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { //process $this->a }} unset them as soon as possible , so that memory is freed and rest of the script can relax. Here is a simple demonstration of how assign by reference can save memory in some cases <?phpini_set('display_errors' , true);error_reporting(E_ALL);$a = array();for($i = 0; $i < 100000 ; $i++){ $a[$i] = 'A'.$i;}echo 'Memory usage in MB : '. memory_get_usage() / 1000000 . '<br />';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() / 1000000 . '<br />';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() / 1000000 . '<br />';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() / 1000000 . '<br />'; The output on a typical php 5.4 machine is : Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more. 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this : function add_to_cart(){ $db = new Database(); $db->query("INSERT INTO cart .....");}function empty_cart(){ $db = new Database(); $db->query("DELETE FROM cart .....");} Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory. Use the singleton pattern for special cases like database connection. 26. Avoid direct SQL query , abstract it $query = "INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')";$db->query($query); //call to mysqli_query() The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like: All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries. A very simple example of an activerecord insert function can be like this : function insert_record($table_name , $data){ foreach($data as $key => $value) { //mysqli_real_escape_string $data[$key] = $db->mres($value); } $fields = implode(',' , array_keys($data)); $values = "'" . implode("','" , array_values($data)) . "'"; //Final query $query = "INSERT INTO {$table}($fields) VALUES($values)"; return $db->query($query);}//data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);//perform the INSERT queryinsert_record('users' , $data); The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse). This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise. 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again. Benefits : Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue. Storing session in database makes many other things easier like: Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example : <head> <base href="http://www.domain.com/store/"></head><body> <img src="/static/imghw/default1.png" data-src="happy.jpg" class="lazy" / alt="40+ Useful Php tips for beginners ? Part 1" ></body></html> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories. Lets take an example www.domain.com/store/home.php www.domain.com/store/products/ipad.php In home.php the following can be written : <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> But in ipad.php the links have to be like this : <a href="../home.php">Home</a><a href="ipad.php">Ipad</a> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag. <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products/ipad.php 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing. ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT); On production , the display should be disabled. ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark. After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set. ini_set('log_errors' , '1');ini_set('error_log' , '/path/to/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); Note : 1. The path '/path/to/errors.txt' should be writable by the web server for errors to be logged there. 2. A separate error file is specified , otherwise all logs would go inside the apache/web server error log and get mixed up with other apache errors. 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver). 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like /var/log dont have to searched. 5. Dont set error_reporting to 0. It will not log anything then. Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file. Set 'display_errors=On' in php.ini on development machine On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page. Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work. Set 'display_errors=Off' in php.ini on production machine Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away. 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results. On a 64 bit machine you can see such output. $ php -aInteractive shellphp > echo strtotime("0000-00-00 00:00:00");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600 But on a 32 bit machine all of them would give bool(false). Check here for more. What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines. 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this : set_time_limit(30);//Rest of the code It may not always work. Any execution that happens outside the script via system calls/os functions like socket operations, database operations etc. will not be under control of set_time_limit. So if a database operation takes lot of time or "hangs" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time. 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it. A better solution : /** Method to execute a command in the terminal Uses : 1. system 2. passthru 3. exec 4. shell_exec*/function terminal($command){ //system if(function_exists('system')) { ob_start(); system($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //passthru else if(function_exists('passthru')) { ob_start(); passthru($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //exec else if(function_exists('exec')) { exec($command , $output , $return_var); $output = implode("\n" , $output); } //shell_exec else if(function_exists('shell_exec')) { $output = shell_exec($command) ; } else { $output = 'Command execution not possible on this system'; $return_var = 1; } return array('output' => $output , 'status' => $return_var);}terminal('ls'); The above function will execute the shell command using whichever function is available , keeping your code consistent. 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user. 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise. Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind. 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily. Few popular libraries are : mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference. 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code. Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community. They contain user feedback, expert advice and useful code snippets. So check them out. 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!! 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc. The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more 1. Codeigniter 2. WordPress 3. Joomla CMS 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment. Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster. Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free. 本站聲明 本文內(nèi)容由網(wǎng)友自發(fā)貢獻,版權(quán)歸原作者所有,本站不承擔相應(yīng)法律責任。如您發(fā)現(xiàn)有涉嫌抄襲侵權(quán)的內(nèi)容,請聯(lián)系admin@php.cn 熱AI工具 Undress AI Tool 免費脫衣服圖片 Undresser.AI Undress 人工智能驅(qū)動的應(yīng)用程序,用于創(chuàng)建逼真的裸體照片 AI Clothes Remover 用于從照片中去除衣服的在線人工智能工具。 Clothoff.io AI脫衣機 Video Face Swap 使用我們完全免費的人工智能換臉工具輕松在任何視頻中換臉! 顯示更多 熱門文章 指南:恒星刀片保存文件位置/保存文件丟失/不保存 4 周前 By DDD Oguri Cap Build Guide |漂亮的德比志 2 周前 By Jack chen Agnes Tachyon Build Guide |漂亮的德比志 1 周前 By Jack chen 沙丘:覺醒 - 高級行星學家Quest演練 4 周前 By Jack chen 約會一切:德克和哈珀關(guān)系指南 4 周前 By Jack chen 顯示更多 熱工具 記事本++7.3.1 好用且免費的代碼編輯器 SublimeText3漢化版 中文版,非常好用 禪工作室 13.0.1 功能強大的PHP集成開發(fā)環(huán)境 Dreamweaver CS6 視覺化網(wǎng)頁開發(fā)工具 SublimeText3 Mac版 神級代碼編輯軟件(SublimeText3) 顯示更多 熱門話題 gmail郵箱登陸入口在哪里 8638 17 Java教程 1783 16 CakePHP 教程 1728 56 Laravel 教程 1578 28 PHP教程 1442 31 顯示更多 Related knowledge 如何在PHP中實施身份驗證和授權(quán)? Jun 20, 2025 am 01:03 AM tosecurelyhandleauthenticationandationallizationInphp,lofterTheSesteps:1.AlwaysHashPasswordSwithPassword_hash()andverifyusingspasspassword_verify(),usepreparedStatatementStopreventsqlineptions,andStoreSeruserDatain usseruserDatain $ _sessiveferterlogin.2.implementrole-2.imaccessccsccccccccccccccccccccccccc. 如何在PHP中安全地處理文件上傳? Jun 19, 2025 am 01:05 AM 要安全處理PHP中的文件上傳,核心在于驗證文件類型、重命名文件并限制權(quán)限。1.使用finfo_file()檢查真實MIME類型,僅允許特定類型如image/jpeg;2.用uniqid()生成隨機文件名,存儲至非Web根目錄;3.通過php.ini和HTML表單限制文件大小,設(shè)置目錄權(quán)限為0755;4.使用ClamAV掃描惡意軟件,增強安全性。這些步驟有效防止安全漏洞,確保文件上傳過程安全可靠。 PHP中==(松散比較)和===(嚴格的比較)之間有什么區(qū)別? Jun 19, 2025 am 01:07 AM 在PHP中,==與===的主要區(qū)別在于類型檢查的嚴格程度。==在比較前會進行類型轉(zhuǎn)換,例如5=="5"返回true,而===要求值和類型都相同才會返回true,例如5==="5"返回false。使用場景上,===更安全應(yīng)優(yōu)先使用,==僅在需要類型轉(zhuǎn)換時使用。 如何在PHP( - , *, /,%)中執(zhí)行算術(shù)操作? Jun 19, 2025 pm 05:13 PM PHP中使用基本數(shù)學運算的方法如下:1.加法用 號,支持整數(shù)和浮點數(shù),也可用于變量,字符串數(shù)字會自動轉(zhuǎn)換但不推薦依賴;2.減法用-號,變量同理,類型轉(zhuǎn)換同樣適用;3.乘法用*號,適用于數(shù)字及類似字符串;4.除法用/號,需避免除以零,并注意結(jié)果可能是浮點數(shù);5.取模用%號,可用于判斷奇偶數(shù),處理負數(shù)時余數(shù)符號與被除數(shù)一致。正確使用這些運算符的關(guān)鍵在于確保數(shù)據(jù)類型清晰并處理好邊界情況。 如何與PHP的NOSQL數(shù)據(jù)庫(例如MongoDB,Redis)進行交互? Jun 19, 2025 am 01:07 AM 是的,PHP可以通過特定擴展或庫與MongoDB和Redis等NoSQL數(shù)據(jù)庫交互。首先,使用MongoDBPHP驅(qū)動(通過PECL或Composer安裝)創(chuàng)建客戶端實例并操作數(shù)據(jù)庫及集合,支持插入、查詢、聚合等操作;其次,使用Predis庫或phpredis擴展連接Redis,執(zhí)行鍵值設(shè)置與獲取,推薦phpredis用于高性能場景,Predis則便于快速部署;兩者均適用于生產(chǎn)環(huán)境且文檔完善。 我如何了解最新的PHP開發(fā)和最佳實踐? Jun 23, 2025 am 12:56 AM TostaycurrentwithPHPdevelopmentsandbestpractices,followkeynewssourceslikePHP.netandPHPWeekly,engagewithcommunitiesonforumsandconferences,keeptoolingupdatedandgraduallyadoptnewfeatures,andreadorcontributetoopensourceprojects.First,followreliablesource 什么是PHP,為什么它用于Web開發(fā)? Jun 23, 2025 am 12:55 AM PHPbecamepopularforwebdevelopmentduetoitseaseoflearning,seamlessintegrationwithHTML,widespreadhostingsupport,andalargeecosystemincludingframeworkslikeLaravelandCMSplatformslikeWordPress.Itexcelsinhandlingformsubmissions,managingusersessions,interacti 如何設(shè)置PHP時區(qū)? Jun 25, 2025 am 01:00 AM tosetTherightTimeZoneInphp,restate_default_timezone_set()functionAtthestArtofyourscriptWithavalIdidentIdentifiersuchas'america/new_york'.1.usedate_default_default_timezone_set_set() See all articles
By doing this you get the accurate information that where is a file write failing and why<\/p> 14. Change permission of files that your application creates
When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are \"accessible\" outside. Otherwise for example the files may be created by \"php\" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on.<\/p>
\/\/ Read and write for owner, read for everybody elsechmod(\"\/somedir\/somefile\", 0644);\/\/ Everything for owner, read and execute for otherschmod(\"\/somedir\/somefile\", 0755);<\/pre> 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ \/\/Save the things}<\/pre> The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this :<\/p> if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ \/\/Save the things}<\/pre> Now you are free from the value the submit button<\/p> 16. Use static variables in function where they always have same value \/\/Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); \t echo \"Delaying for $sync_delay seconds...\"; sleep($sync_delay); echo \"Done \";}<\/pre> Instead use static variables as :<\/p> \/\/Delay for some timefunction delay(){ static $sync_delay = null;\t if($sync_delay == null) {\t$sync_delay = get_option('sync_delay'); }\t echo \"Delaying for $sync_delay seconds...\"; sleep($sync_delay); echo \"Done \";}<\/pre> 17. Don't use the $_SESSION variable directly Some simple examples are :<\/p> $_SESSION['username'] = $username;$username = $_SESSION['username'];<\/pre> But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain.<\/p> Hence use application specific keys with wrapper functions :<\/p> define('APP_ID' , 'abc_corp_ecommerce');\/\/Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}\/\/Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;}<\/pre> 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like :<\/p> function utility_a(){ \/\/This function does a utility thing like string processing}function utility_b(){ \/\/This function does nother utility thing like database processing}function utility_c(){ \/\/This function is ...}<\/pre> And you use the function throughout your application freely. You may want to wrap them into a class as static functions :<\/p> class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}\/\/and call them as $a = Utility::utility_a();$b = Utility::utility_b();<\/pre> One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else.<\/p> 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++;<\/pre> Its absolutely a WASTE.<\/p> Write<\/p> if($a == true){ $a_count++;}<\/pre> Dont try to make your code shorter by eating up syntax. Rather make your logic shorter.<\/p> Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this :<\/p> foreach($arr as $c => $v){\t$arr[$c] = trim($v);}<\/pre> But it can more cleaner with array_map :<\/p> $arr = array_map('trim' , $arr);<\/pre> This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more.<\/p> 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters.<\/p> The php filter extension provides simple way to validate or check values as being a valid 'something'.<\/p> 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate'];<\/pre> Its a good habit.<\/p> 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose<\/p> 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded :<\/p> $db_records_in_array_format; \/\/This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; \/\/2MB moresome_function($cc); \/\/Another 2MB ?<\/pre> The above thing is common when importing a csv file or exporting table to a csv file<\/p> Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays.<\/p> Consider passing them by reference , or storing them in a class variable :<\/p> $a = get_large_array();pass_to_function(&$a);<\/pre> by doing this the same variable (and not its copy) will be available to the function. Check documentation<\/p> class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { \/\/process $this->a }}<\/pre> unset them as soon as possible , so that memory is freed and rest of the script can relax.<\/p> Here is a simple demonstration of how assign by reference can save memory in some cases<\/p> ';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() \/ 1000000 . '';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() \/ 1000000 . '';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() \/ 1000000 . '';<\/pre> The output on a typical php 5.4 machine is :<\/p> Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 <\/p> So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more.<\/p> 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this :<\/p> function add_to_cart(){ $db = new Database(); $db->query(\"INSERT INTO cart .....\");}function empty_cart(){ $db = new Database(); $db->query(\"DELETE FROM cart .....\");}<\/pre> Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory.<\/p> Use the singleton pattern for special cases like database connection.<\/p> 26. Avoid direct SQL query , abstract it $query = \"INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')\";$db->query($query); \/\/call to mysqli_query()<\/pre> The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like:<\/p> All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord<\/p> It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries.<\/p> A very simple example of an activerecord insert function can be like this :<\/p> function insert_record($table_name , $data){ foreach($data as $key => $value) {\t\/\/mysqli_real_escape_string $data[$key] = $db->mres($value); }\t\t $fields = implode(',' , array_keys($data)); $values = \"'\" . implode(\"','\" , array_values($data)) . \"'\"; \/\/Final query\t $query = \"INSERT INTO {$table}($fields) VALUES($values)\";\t\t return $db->query($query);}\/\/data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);\/\/perform the INSERT queryinsert_record('users' , $data);<\/pre> The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse).<\/p> This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise.<\/p> 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again.<\/p> Benefits :<\/p> Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue.<\/p> Storing session in database makes many other things easier like:<\/p> Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines\/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example :<\/p> <\/head> <\/body><\/html><\/pre> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories.<\/p> Lets take an example<\/p> www.domain.com\/store\/home.php www.domain.com\/store\/products\/ipad.php<\/p> In home.php the following can be written :<\/p> Home<\/a>Ipad<\/a><\/pre> But in ipad.php the links have to be like this :<\/p> Home<\/a>Ipad<\/a><\/pre> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag.<\/p> <\/head>Home<\/a>Ipad<\/a><\/body><\/html><\/pre> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products\/ipad.php<\/p> 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing.<\/p> ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT);<\/pre> On production , the display should be disabled.<\/p> ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark.<\/p> After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set.<\/p> ini_set('log_errors' , '1');ini_set('error_log' , '\/path\/to\/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> Note :<\/p> 1. The path '\/path\/to\/errors.txt' should be writable by the web server for errors to be logged there.<\/p> 2. A separate error file is specified , otherwise all logs would go inside the apache\/web server error log and get mixed up with other apache errors.<\/p> 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver).<\/p> 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like \/var\/log dont have to searched.<\/p> 5. Dont set error_reporting to 0. It will not log anything then.<\/p> Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file.<\/p> Set 'display_errors=On' in php.ini on development machine<\/p> On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page.<\/p> Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work.<\/p> Set 'display_errors=Off' in php.ini on production machine<\/p> Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away.<\/p> 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results.<\/p> On a 64 bit machine you can see such output.<\/p> $ php -aInteractive shellphp > echo strtotime(\"0000-00-00 00:00:00\");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600<\/pre> But on a 32 bit machine all of them would give bool(false). Check here for more.<\/p> What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines.<\/p> 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this :<\/p> set_time_limit(30);\/\/Rest of the code<\/pre> It may not always work. Any execution that happens outside the script via system calls\/os functions like socket operations, database operations etc. will not be under control of set_time_limit.<\/p> So if a database operation takes lot of time or \"hangs\" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time.<\/p> 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it.<\/p> A better solution :<\/p> \/**\tMethod to execute a command in the terminal\tUses :\t1. system\t2. passthru\t3. exec\t4. shell_exec*\/function terminal($command){\t\/\/system\tif(function_exists('system'))\t{\t\tob_start();\t\tsystem($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/passthru\telse if(function_exists('passthru'))\t{\t\tob_start();\t\tpassthru($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/exec\telse if(function_exists('exec'))\t{\t\texec($command , $output , $return_var);\t\t$output = implode(\"\\n\" , $output);\t}\t\/\/shell_exec\telse if(function_exists('shell_exec'))\t{\t\t$output = shell_exec($command) ;\t}\telse\t{\t\t$output = 'Command execution not possible on this system';\t\t$return_var = 1;\t}\treturn array('output' => $output , 'status' => $return_var);}terminal('ls');<\/pre> The above function will execute the shell command using whichever function is available , keeping your code consistent.<\/p> 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user.<\/p> 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise.<\/p> Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind.<\/p> 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily.<\/p> Few popular libraries are :<\/p> mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference.<\/p> 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code.<\/p> Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community.<\/p> They contain user feedback, expert advice and useful code snippets. So check them out.<\/p> 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!!<\/p> 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc.<\/p> The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more<\/p> 1. Codeigniter 2. WordPress 3. Joomla CMS<\/p> 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment.<\/p> Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster.<\/p> Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free.<\/p> "} 社區(qū) 文章 合集 問答 學習 課程 編程詞典 工具庫 開發(fā)工具 網(wǎng)站源碼 PHP 庫 JS特效 網(wǎng)站素材 擴展插件 AI工具 休閑 游戲下載 游戲教程 簡體中文 簡體中文 English 繁體中文 日本語 ??? Melayu Fran?ais Deutsch Login singup 首頁 后端開發(fā) php教程 40+ Useful Php tips for beginners ? Part 1 40+ Useful Php tips for beginners ? Part 1 WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB Jun 23, 2016 pm 02:37 PM PHP學習指南 http://www.binarytides.com/category/php-2/tutorial/ In this series we are going to look into some useful tips and techniques that can be used to improve and optimise your php code. Note that these php tips are meant for beginners and not those who are already using mvc frameworks etc. The Techniques 1. Do not use relative paths , instead define a ROOT path Its quite common to see such lines : require_once('http://www.cnblogs.com/lib/some_class.php'); This approach has many drawbacks : It first searches for directories specified in the include paths of php , then looks from the current directory. So many directories are checked. When a script is included by another script in a different directory , its base directory changes to that of the including script. Another issue , is that when a script is being run from cron , it may not have its parent directory as the working directory. So its a good idea to have absolute paths : define('ROOT' , '/var/www/project/');require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code Now this is an absolute path and will always stay constant. But we can improve this further. The directory /var/www/project can change , so do we change it everytime ? No instead we make it portable using magic constants like __FILE__ . Take a closer look : //suppose your script is /var/www/project/index.php//Then __FILE__ will always have that full path.define('ROOT' , pathinfo(__FILE__, PATHINFO_DIRNAME));require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code So now even if you shift your project to a different directory , like moving it to an online server , the same code will run without any changes. 2. Dont use require , include , require_once or include_once Your script could be including various files on top , like class libraries , files for utility and helper functions etc like this : require_once('lib/Database.php');require_once('lib/Mail.php');require_once('helpers/utitlity_functions.php'); This is rather primitive. The code needs to be more flexible. Write up helper functions to include things more easily. Lets take an example : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); require_once( $path ); }load_class('Database');load_class('Mail'); See any difference ? You must. It does not need any more explanation. You can improve this further if you wish to like this : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); if(file_exists($path)) { require_once( $path ); }} There are a lot of things that can be done with this : Search multiple directories for the same class file. Change the directory containing class files easily , without breaking the code anywhere. Use similar functions for loading files that contain helper functions , html content etc. 3. Maintain debugging environment in your application During development we echo database queries , dump variables which are creating problems , and then once the problem is solved , we comment them or erase them. But its a good idea to let everything stay and help in the long run On your development machine you can do this : define('ENVIRONMENT' , 'development');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } And on the server you can do this : define('ENVIRONMENT' , 'production');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } 4. Propagate status messages via session Status messages are those messages that are generated after doing a task. <?phpif($wrong_username || $wrong_password){ $msg = 'Invalid username or password';}?><html><body><?php echo $msg; ?><form>...</form></body></html> Code like that is common. Using variables to show status messages has limitations. They cannot be send via redirects (unless you propagate them as GET variables to the next script , which is very silly). In large scripts there might be multiple messages etc. Best way is to use session to propagate them (even if on same page). For this there has to be a session_start on every page. function set_flash($msg){ $_SESSION['message'] = $msg;}function get_flash(){ $msg = $_SESSION['message']; unset($_SESSION['message']); return $msg;} and in your script : <?phpif($wrong_username || $wrong_password){ set_flash('Invalid username or password');}?><html><body>Status is : <?php echo get_flash(); ?><form>...</form></body></html> 5. Make your functions flexible function add_to_cart($item_id , $qty){ $_SESSION['cart'][$item_id] = $qty;}add_to_cart( 'IPHONE3' , 2 ); When adding a single item you use the above function. When adding multiple items , will you create another function ? NO. Just make the function flexible enough to take different kinds of parameters. Have a closer look : function add_to_cart($item_id , $qty){ if(!is_array($item_id)) { $_SESSION['cart'][$item_id] = $qty; } else { foreach($item_id as $i_id => $qty) { $_SESSION['cart'][$i_id] = $qty; } }}add_to_cart( 'IPHONE3' , 2 );add_to_cart( array('IPHONE3' => 2 , 'IPAD' => 5) ); So now the same function can accept different kinds of output. The above can be applied in lots of places to make your code more agile. 6. Omit the closing php tag if it is the last thing in a script I wonder why this tip is omitted from so many blog posts on php tips. <?phpecho "Hello";//Now dont close this tag This will save you lots of problem. Lets take an example : A class file super_class.php <?phpclass super_class{ function super_function() { //super code }}?>//super extra character after the closing tag Now index.php require_once('super_class.php');//echo an image or pdf , or set the cookies or session data And you will get Headers already send error. Why ? because the "super extra character" has been echoed , and all headers went along with that. Now you start debugging. You may have to waste many hours to find the super extra space. Hence make it a habit to omit the closing tag : <?phpclass super_class{ function super_function() { //super code }}//No closing tag Thats better. 7. Collect all output at one place , and output at one shot to the browser This is called output buffering. Lets say you have been echoing content from different functions like this : function print_header(){ echo "<div id='header'>Site Log and Login links</div>";}function print_footer(){ echo "<div id='footer'>Site was made by me</div>";}print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}print_footer(); Instead of doing like that , first collect all output in one place. You can either store it inside variables in the functions or use ob_start and ob_end_clean. So now it should look like function print_header(){ $o = "<div id='header'>Site Log and Login links</div>"; return $o;}function print_footer(){ $o = "<div id='footer'>Site was made by me</div>"; return $o;}echo print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}echo print_footer(); So why should you do output buffering : You can change the output just before sending it to browser if you need to. Think about doing some str_replaces , or may be preg_replaces or may be adding some extra html at the end like profiler/debugger output Its a bad idea to send output to browser and do php processing at the same time. Have you ever seen a website where there is a Fatal error in the sidebar or in a box in the middle of the screen. You know why that happens ? Because processing and output are being mixed. 8. Send correct mime types via header when outputting non-html content Lets echo some xml. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataecho $xml; Works fine. But it needs some improvement. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataheader("content-type: text/xml");echo $xml; Note that header line. That line tells the browser that the content is xml content. So the browser can handle it correctly. Many javascript libraries also rely on header information. Similarly for javascript , css , jpg image , png image : Javascript header("content-type: application/x-javascript");echo "var a = 10"; CSS header("content-type: text/css");echo "#div id { background:#000; }"; 9. Set the correct character encoding for a mysql connection Ever faced a problem that unicode/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation. $host = 'localhost';$username = 'root';$password = 'super_secret';//Attempt to connect to database$c = mysqli_connect($host , $username, $password); //Check connection validityif (!$c) { die ("Could not connect to the database host: <br />". mysqli_connect_error());} //Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){ die('mysqli_set_charset() failed');} Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application. Otherwise what will happen ? You will see lots of boxes and ???????? in non english text. 10. Use htmlentities with the correct characterset option Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc. $value = htmlentities($this->value , ENT_QUOTES , 'UTF-8'); Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual. 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php. Use apache mod_gzip/mod_deflate to compress content via the .htaccess file. 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php. $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= "'$image' ,";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;//Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,]; Be smart. use json_encode : $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;//Output is : var images = ["myself.png","friends.png","colleagues.png"] Isn't that neat ? 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of "debugging" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on. Make sure that your application is as intelligent as possible and reports the most important information in the shortest time. $contents = "All the content";$file_path = "/var/www/project/content.txt";file_put_contents($file_path , $contents); That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons : Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file. $contents = "All the content";$dir = '/var/www/project';$file_path = $dir . "/content.txt";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die("Directory $dir is not writable, or does not exist. Please check");} By doing this you get the accurate information that where is a file write failing and why 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are "accessible" outside. Otherwise for example the files may be created by "php" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on. // Read and write for owner, read for everybody elsechmod("/somedir/somefile", 0644);// Everything for owner, read and execute for otherschmod("/somedir/somefile", 0755); 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ //Save the things} The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this : if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ //Save the things} Now you are free from the value the submit button 16. Use static variables in function where they always have same value //Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} Instead use static variables as : //Delay for some timefunction delay(){ static $sync_delay = null; if($sync_delay == null) { $sync_delay = get_option('sync_delay'); } echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} 17. Don't use the $_SESSION variable directly Some simple examples are : $_SESSION['username'] = $username;$username = $_SESSION['username']; But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain. Hence use application specific keys with wrapper functions : define('APP_ID' , 'abc_corp_ecommerce');//Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}//Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;} 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like : function utility_a(){ //This function does a utility thing like string processing}function utility_b(){ //This function does nother utility thing like database processing}function utility_c(){ //This function is ...} And you use the function throughout your application freely. You may want to wrap them into a class as static functions : class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}//and call them as $a = Utility::utility_a();$b = Utility::utility_b(); One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else. 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++; Its absolutely a WASTE. Write if($a == true){ $a_count++;} Dont try to make your code shorter by eating up syntax. Rather make your logic shorter. Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this : foreach($arr as $c => $v){ $arr[$c] = trim($v);} But it can more cleaner with array_map : $arr = array_map('trim' , $arr); This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more. 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters. The php filter extension provides simple way to validate or check values as being a valid 'something'. 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate']; Its a good habit. 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded : $db_records_in_array_format; //This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; //2MB moresome_function($cc); //Another 2MB ? The above thing is common when importing a csv file or exporting table to a csv file Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays. Consider passing them by reference , or storing them in a class variable : $a = get_large_array();pass_to_function(&$a); by doing this the same variable (and not its copy) will be available to the function. Check documentation class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { //process $this->a }} unset them as soon as possible , so that memory is freed and rest of the script can relax. Here is a simple demonstration of how assign by reference can save memory in some cases <?phpini_set('display_errors' , true);error_reporting(E_ALL);$a = array();for($i = 0; $i < 100000 ; $i++){ $a[$i] = 'A'.$i;}echo 'Memory usage in MB : '. memory_get_usage() / 1000000 . '<br />';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() / 1000000 . '<br />';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() / 1000000 . '<br />';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() / 1000000 . '<br />'; The output on a typical php 5.4 machine is : Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more. 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this : function add_to_cart(){ $db = new Database(); $db->query("INSERT INTO cart .....");}function empty_cart(){ $db = new Database(); $db->query("DELETE FROM cart .....");} Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory. Use the singleton pattern for special cases like database connection. 26. Avoid direct SQL query , abstract it $query = "INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')";$db->query($query); //call to mysqli_query() The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like: All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries. A very simple example of an activerecord insert function can be like this : function insert_record($table_name , $data){ foreach($data as $key => $value) { //mysqli_real_escape_string $data[$key] = $db->mres($value); } $fields = implode(',' , array_keys($data)); $values = "'" . implode("','" , array_values($data)) . "'"; //Final query $query = "INSERT INTO {$table}($fields) VALUES($values)"; return $db->query($query);}//data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);//perform the INSERT queryinsert_record('users' , $data); The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse). This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise. 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again. Benefits : Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue. Storing session in database makes many other things easier like: Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example : <head> <base href="http://www.domain.com/store/"></head><body> <img src="/static/imghw/default1.png" data-src="happy.jpg" class="lazy" / alt="40+ Useful Php tips for beginners ? Part 1" ></body></html> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories. Lets take an example www.domain.com/store/home.php www.domain.com/store/products/ipad.php In home.php the following can be written : <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> But in ipad.php the links have to be like this : <a href="../home.php">Home</a><a href="ipad.php">Ipad</a> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag. <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products/ipad.php 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing. ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT); On production , the display should be disabled. ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark. After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set. ini_set('log_errors' , '1');ini_set('error_log' , '/path/to/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); Note : 1. The path '/path/to/errors.txt' should be writable by the web server for errors to be logged there. 2. A separate error file is specified , otherwise all logs would go inside the apache/web server error log and get mixed up with other apache errors. 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver). 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like /var/log dont have to searched. 5. Dont set error_reporting to 0. It will not log anything then. Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file. Set 'display_errors=On' in php.ini on development machine On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page. Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work. Set 'display_errors=Off' in php.ini on production machine Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away. 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results. On a 64 bit machine you can see such output. $ php -aInteractive shellphp > echo strtotime("0000-00-00 00:00:00");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600 But on a 32 bit machine all of them would give bool(false). Check here for more. What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines. 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this : set_time_limit(30);//Rest of the code It may not always work. Any execution that happens outside the script via system calls/os functions like socket operations, database operations etc. will not be under control of set_time_limit. So if a database operation takes lot of time or "hangs" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time. 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it. A better solution : /** Method to execute a command in the terminal Uses : 1. system 2. passthru 3. exec 4. shell_exec*/function terminal($command){ //system if(function_exists('system')) { ob_start(); system($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //passthru else if(function_exists('passthru')) { ob_start(); passthru($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //exec else if(function_exists('exec')) { exec($command , $output , $return_var); $output = implode("\n" , $output); } //shell_exec else if(function_exists('shell_exec')) { $output = shell_exec($command) ; } else { $output = 'Command execution not possible on this system'; $return_var = 1; } return array('output' => $output , 'status' => $return_var);}terminal('ls'); The above function will execute the shell command using whichever function is available , keeping your code consistent. 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user. 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise. Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind. 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily. Few popular libraries are : mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference. 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code. Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community. They contain user feedback, expert advice and useful code snippets. So check them out. 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!! 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc. The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more 1. Codeigniter 2. WordPress 3. Joomla CMS 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment. Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster. Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free. 本站聲明 本文內(nèi)容由網(wǎng)友自發(fā)貢獻,版權(quán)歸原作者所有,本站不承擔相應(yīng)法律責任。如您發(fā)現(xiàn)有涉嫌抄襲侵權(quán)的內(nèi)容,請聯(lián)系admin@php.cn 熱AI工具 Undress AI Tool 免費脫衣服圖片 Undresser.AI Undress 人工智能驅(qū)動的應(yīng)用程序,用于創(chuàng)建逼真的裸體照片 AI Clothes Remover 用于從照片中去除衣服的在線人工智能工具。 Clothoff.io AI脫衣機 Video Face Swap 使用我們完全免費的人工智能換臉工具輕松在任何視頻中換臉! 顯示更多 熱門文章 指南:恒星刀片保存文件位置/保存文件丟失/不保存 4 周前 By DDD Oguri Cap Build Guide |漂亮的德比志 2 周前 By Jack chen Agnes Tachyon Build Guide |漂亮的德比志 1 周前 By Jack chen 沙丘:覺醒 - 高級行星學家Quest演練 4 周前 By Jack chen 約會一切:德克和哈珀關(guān)系指南 4 周前 By Jack chen 顯示更多 熱工具 記事本++7.3.1 好用且免費的代碼編輯器 SublimeText3漢化版 中文版,非常好用 禪工作室 13.0.1 功能強大的PHP集成開發(fā)環(huán)境 Dreamweaver CS6 視覺化網(wǎng)頁開發(fā)工具 SublimeText3 Mac版 神級代碼編輯軟件(SublimeText3) 顯示更多 熱門話題 gmail郵箱登陸入口在哪里 8638 17 Java教程 1783 16 CakePHP 教程 1728 56 Laravel 教程 1578 28 PHP教程 1442 31 顯示更多 Related knowledge 如何在PHP中實施身份驗證和授權(quán)? Jun 20, 2025 am 01:03 AM tosecurelyhandleauthenticationandationallizationInphp,lofterTheSesteps:1.AlwaysHashPasswordSwithPassword_hash()andverifyusingspasspassword_verify(),usepreparedStatatementStopreventsqlineptions,andStoreSeruserDatain usseruserDatain $ _sessiveferterlogin.2.implementrole-2.imaccessccsccccccccccccccccccccccccc. 如何在PHP中安全地處理文件上傳? Jun 19, 2025 am 01:05 AM 要安全處理PHP中的文件上傳,核心在于驗證文件類型、重命名文件并限制權(quán)限。1.使用finfo_file()檢查真實MIME類型,僅允許特定類型如image/jpeg;2.用uniqid()生成隨機文件名,存儲至非Web根目錄;3.通過php.ini和HTML表單限制文件大小,設(shè)置目錄權(quán)限為0755;4.使用ClamAV掃描惡意軟件,增強安全性。這些步驟有效防止安全漏洞,確保文件上傳過程安全可靠。 PHP中==(松散比較)和===(嚴格的比較)之間有什么區(qū)別? Jun 19, 2025 am 01:07 AM 在PHP中,==與===的主要區(qū)別在于類型檢查的嚴格程度。==在比較前會進行類型轉(zhuǎn)換,例如5=="5"返回true,而===要求值和類型都相同才會返回true,例如5==="5"返回false。使用場景上,===更安全應(yīng)優(yōu)先使用,==僅在需要類型轉(zhuǎn)換時使用。 如何在PHP( - , *, /,%)中執(zhí)行算術(shù)操作? Jun 19, 2025 pm 05:13 PM PHP中使用基本數(shù)學運算的方法如下:1.加法用 號,支持整數(shù)和浮點數(shù),也可用于變量,字符串數(shù)字會自動轉(zhuǎn)換但不推薦依賴;2.減法用-號,變量同理,類型轉(zhuǎn)換同樣適用;3.乘法用*號,適用于數(shù)字及類似字符串;4.除法用/號,需避免除以零,并注意結(jié)果可能是浮點數(shù);5.取模用%號,可用于判斷奇偶數(shù),處理負數(shù)時余數(shù)符號與被除數(shù)一致。正確使用這些運算符的關(guān)鍵在于確保數(shù)據(jù)類型清晰并處理好邊界情況。 如何與PHP的NOSQL數(shù)據(jù)庫(例如MongoDB,Redis)進行交互? Jun 19, 2025 am 01:07 AM 是的,PHP可以通過特定擴展或庫與MongoDB和Redis等NoSQL數(shù)據(jù)庫交互。首先,使用MongoDBPHP驅(qū)動(通過PECL或Composer安裝)創(chuàng)建客戶端實例并操作數(shù)據(jù)庫及集合,支持插入、查詢、聚合等操作;其次,使用Predis庫或phpredis擴展連接Redis,執(zhí)行鍵值設(shè)置與獲取,推薦phpredis用于高性能場景,Predis則便于快速部署;兩者均適用于生產(chǎn)環(huán)境且文檔完善。 我如何了解最新的PHP開發(fā)和最佳實踐? Jun 23, 2025 am 12:56 AM TostaycurrentwithPHPdevelopmentsandbestpractices,followkeynewssourceslikePHP.netandPHPWeekly,engagewithcommunitiesonforumsandconferences,keeptoolingupdatedandgraduallyadoptnewfeatures,andreadorcontributetoopensourceprojects.First,followreliablesource 什么是PHP,為什么它用于Web開發(fā)? Jun 23, 2025 am 12:55 AM PHPbecamepopularforwebdevelopmentduetoitseaseoflearning,seamlessintegrationwithHTML,widespreadhostingsupport,andalargeecosystemincludingframeworkslikeLaravelandCMSplatformslikeWordPress.Itexcelsinhandlingformsubmissions,managingusersessions,interacti 如何設(shè)置PHP時區(qū)? Jun 25, 2025 am 01:00 AM tosetTherightTimeZoneInphp,restate_default_timezone_set()functionAtthestArtofyourscriptWithavalIdidentIdentifiersuchas'america/new_york'.1.usedate_default_default_timezone_set_set() See all articles
if($_POST['submit'] == 'Save'){ \/\/Save the things}<\/pre> The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this :<\/p> if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ \/\/Save the things}<\/pre> Now you are free from the value the submit button<\/p> 16. Use static variables in function where they always have same value \/\/Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); \t echo \"Delaying for $sync_delay seconds...\"; sleep($sync_delay); echo \"Done \";}<\/pre> Instead use static variables as :<\/p> \/\/Delay for some timefunction delay(){ static $sync_delay = null;\t if($sync_delay == null) {\t$sync_delay = get_option('sync_delay'); }\t echo \"Delaying for $sync_delay seconds...\"; sleep($sync_delay); echo \"Done \";}<\/pre> 17. Don't use the $_SESSION variable directly Some simple examples are :<\/p> $_SESSION['username'] = $username;$username = $_SESSION['username'];<\/pre> But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain.<\/p> Hence use application specific keys with wrapper functions :<\/p> define('APP_ID' , 'abc_corp_ecommerce');\/\/Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}\/\/Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;}<\/pre> 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like :<\/p> function utility_a(){ \/\/This function does a utility thing like string processing}function utility_b(){ \/\/This function does nother utility thing like database processing}function utility_c(){ \/\/This function is ...}<\/pre> And you use the function throughout your application freely. You may want to wrap them into a class as static functions :<\/p> class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}\/\/and call them as $a = Utility::utility_a();$b = Utility::utility_b();<\/pre> One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else.<\/p> 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++;<\/pre> Its absolutely a WASTE.<\/p> Write<\/p> if($a == true){ $a_count++;}<\/pre> Dont try to make your code shorter by eating up syntax. Rather make your logic shorter.<\/p> Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this :<\/p> foreach($arr as $c => $v){\t$arr[$c] = trim($v);}<\/pre> But it can more cleaner with array_map :<\/p> $arr = array_map('trim' , $arr);<\/pre> This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more.<\/p> 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters.<\/p> The php filter extension provides simple way to validate or check values as being a valid 'something'.<\/p> 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate'];<\/pre> Its a good habit.<\/p> 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose<\/p> 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded :<\/p> $db_records_in_array_format; \/\/This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; \/\/2MB moresome_function($cc); \/\/Another 2MB ?<\/pre> The above thing is common when importing a csv file or exporting table to a csv file<\/p> Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays.<\/p> Consider passing them by reference , or storing them in a class variable :<\/p> $a = get_large_array();pass_to_function(&$a);<\/pre> by doing this the same variable (and not its copy) will be available to the function. Check documentation<\/p> class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { \/\/process $this->a }}<\/pre> unset them as soon as possible , so that memory is freed and rest of the script can relax.<\/p> Here is a simple demonstration of how assign by reference can save memory in some cases<\/p> ';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() \/ 1000000 . '';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() \/ 1000000 . '';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() \/ 1000000 . '';<\/pre> The output on a typical php 5.4 machine is :<\/p> Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 <\/p> So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more.<\/p> 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this :<\/p> function add_to_cart(){ $db = new Database(); $db->query(\"INSERT INTO cart .....\");}function empty_cart(){ $db = new Database(); $db->query(\"DELETE FROM cart .....\");}<\/pre> Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory.<\/p> Use the singleton pattern for special cases like database connection.<\/p> 26. Avoid direct SQL query , abstract it $query = \"INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')\";$db->query($query); \/\/call to mysqli_query()<\/pre> The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like:<\/p> All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord<\/p> It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries.<\/p> A very simple example of an activerecord insert function can be like this :<\/p> function insert_record($table_name , $data){ foreach($data as $key => $value) {\t\/\/mysqli_real_escape_string $data[$key] = $db->mres($value); }\t\t $fields = implode(',' , array_keys($data)); $values = \"'\" . implode(\"','\" , array_values($data)) . \"'\"; \/\/Final query\t $query = \"INSERT INTO {$table}($fields) VALUES($values)\";\t\t return $db->query($query);}\/\/data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);\/\/perform the INSERT queryinsert_record('users' , $data);<\/pre> The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse).<\/p> This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise.<\/p> 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again.<\/p> Benefits :<\/p> Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue.<\/p> Storing session in database makes many other things easier like:<\/p> Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines\/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example :<\/p> <\/head> <\/body><\/html><\/pre> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories.<\/p> Lets take an example<\/p> www.domain.com\/store\/home.php www.domain.com\/store\/products\/ipad.php<\/p> In home.php the following can be written :<\/p> Home<\/a>Ipad<\/a><\/pre> But in ipad.php the links have to be like this :<\/p> Home<\/a>Ipad<\/a><\/pre> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag.<\/p> <\/head>Home<\/a>Ipad<\/a><\/body><\/html><\/pre> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products\/ipad.php<\/p> 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing.<\/p> ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT);<\/pre> On production , the display should be disabled.<\/p> ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark.<\/p> After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set.<\/p> ini_set('log_errors' , '1');ini_set('error_log' , '\/path\/to\/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> Note :<\/p> 1. The path '\/path\/to\/errors.txt' should be writable by the web server for errors to be logged there.<\/p> 2. A separate error file is specified , otherwise all logs would go inside the apache\/web server error log and get mixed up with other apache errors.<\/p> 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver).<\/p> 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like \/var\/log dont have to searched.<\/p> 5. Dont set error_reporting to 0. It will not log anything then.<\/p> Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file.<\/p> Set 'display_errors=On' in php.ini on development machine<\/p> On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page.<\/p> Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work.<\/p> Set 'display_errors=Off' in php.ini on production machine<\/p> Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away.<\/p> 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results.<\/p> On a 64 bit machine you can see such output.<\/p> $ php -aInteractive shellphp > echo strtotime(\"0000-00-00 00:00:00\");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600<\/pre> But on a 32 bit machine all of them would give bool(false). Check here for more.<\/p> What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines.<\/p> 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this :<\/p> set_time_limit(30);\/\/Rest of the code<\/pre> It may not always work. Any execution that happens outside the script via system calls\/os functions like socket operations, database operations etc. will not be under control of set_time_limit.<\/p> So if a database operation takes lot of time or \"hangs\" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time.<\/p> 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it.<\/p> A better solution :<\/p> \/**\tMethod to execute a command in the terminal\tUses :\t1. system\t2. passthru\t3. exec\t4. shell_exec*\/function terminal($command){\t\/\/system\tif(function_exists('system'))\t{\t\tob_start();\t\tsystem($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/passthru\telse if(function_exists('passthru'))\t{\t\tob_start();\t\tpassthru($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/exec\telse if(function_exists('exec'))\t{\t\texec($command , $output , $return_var);\t\t$output = implode(\"\\n\" , $output);\t}\t\/\/shell_exec\telse if(function_exists('shell_exec'))\t{\t\t$output = shell_exec($command) ;\t}\telse\t{\t\t$output = 'Command execution not possible on this system';\t\t$return_var = 1;\t}\treturn array('output' => $output , 'status' => $return_var);}terminal('ls');<\/pre> The above function will execute the shell command using whichever function is available , keeping your code consistent.<\/p> 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user.<\/p> 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise.<\/p> Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind.<\/p> 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily.<\/p> Few popular libraries are :<\/p> mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference.<\/p> 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code.<\/p> Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community.<\/p> They contain user feedback, expert advice and useful code snippets. So check them out.<\/p> 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!!<\/p> 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc.<\/p> The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more<\/p> 1. Codeigniter 2. WordPress 3. Joomla CMS<\/p> 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment.<\/p> Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster.<\/p> Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free.<\/p> "} 社區(qū) 文章 合集 問答 學習 課程 編程詞典 工具庫 開發(fā)工具 網(wǎng)站源碼 PHP 庫 JS特效 網(wǎng)站素材 擴展插件 AI工具 休閑 游戲下載 游戲教程 簡體中文 簡體中文 English 繁體中文 日本語 ??? Melayu Fran?ais Deutsch Login singup 首頁 后端開發(fā) php教程 40+ Useful Php tips for beginners ? Part 1 40+ Useful Php tips for beginners ? Part 1 WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB Jun 23, 2016 pm 02:37 PM PHP學習指南 http://www.binarytides.com/category/php-2/tutorial/ In this series we are going to look into some useful tips and techniques that can be used to improve and optimise your php code. Note that these php tips are meant for beginners and not those who are already using mvc frameworks etc. The Techniques 1. Do not use relative paths , instead define a ROOT path Its quite common to see such lines : require_once('http://www.cnblogs.com/lib/some_class.php'); This approach has many drawbacks : It first searches for directories specified in the include paths of php , then looks from the current directory. So many directories are checked. When a script is included by another script in a different directory , its base directory changes to that of the including script. Another issue , is that when a script is being run from cron , it may not have its parent directory as the working directory. So its a good idea to have absolute paths : define('ROOT' , '/var/www/project/');require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code Now this is an absolute path and will always stay constant. But we can improve this further. The directory /var/www/project can change , so do we change it everytime ? No instead we make it portable using magic constants like __FILE__ . Take a closer look : //suppose your script is /var/www/project/index.php//Then __FILE__ will always have that full path.define('ROOT' , pathinfo(__FILE__, PATHINFO_DIRNAME));require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code So now even if you shift your project to a different directory , like moving it to an online server , the same code will run without any changes. 2. Dont use require , include , require_once or include_once Your script could be including various files on top , like class libraries , files for utility and helper functions etc like this : require_once('lib/Database.php');require_once('lib/Mail.php');require_once('helpers/utitlity_functions.php'); This is rather primitive. The code needs to be more flexible. Write up helper functions to include things more easily. Lets take an example : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); require_once( $path ); }load_class('Database');load_class('Mail'); See any difference ? You must. It does not need any more explanation. You can improve this further if you wish to like this : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); if(file_exists($path)) { require_once( $path ); }} There are a lot of things that can be done with this : Search multiple directories for the same class file. Change the directory containing class files easily , without breaking the code anywhere. Use similar functions for loading files that contain helper functions , html content etc. 3. Maintain debugging environment in your application During development we echo database queries , dump variables which are creating problems , and then once the problem is solved , we comment them or erase them. But its a good idea to let everything stay and help in the long run On your development machine you can do this : define('ENVIRONMENT' , 'development');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } And on the server you can do this : define('ENVIRONMENT' , 'production');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } 4. Propagate status messages via session Status messages are those messages that are generated after doing a task. <?phpif($wrong_username || $wrong_password){ $msg = 'Invalid username or password';}?><html><body><?php echo $msg; ?><form>...</form></body></html> Code like that is common. Using variables to show status messages has limitations. They cannot be send via redirects (unless you propagate them as GET variables to the next script , which is very silly). In large scripts there might be multiple messages etc. Best way is to use session to propagate them (even if on same page). For this there has to be a session_start on every page. function set_flash($msg){ $_SESSION['message'] = $msg;}function get_flash(){ $msg = $_SESSION['message']; unset($_SESSION['message']); return $msg;} and in your script : <?phpif($wrong_username || $wrong_password){ set_flash('Invalid username or password');}?><html><body>Status is : <?php echo get_flash(); ?><form>...</form></body></html> 5. Make your functions flexible function add_to_cart($item_id , $qty){ $_SESSION['cart'][$item_id] = $qty;}add_to_cart( 'IPHONE3' , 2 ); When adding a single item you use the above function. When adding multiple items , will you create another function ? NO. Just make the function flexible enough to take different kinds of parameters. Have a closer look : function add_to_cart($item_id , $qty){ if(!is_array($item_id)) { $_SESSION['cart'][$item_id] = $qty; } else { foreach($item_id as $i_id => $qty) { $_SESSION['cart'][$i_id] = $qty; } }}add_to_cart( 'IPHONE3' , 2 );add_to_cart( array('IPHONE3' => 2 , 'IPAD' => 5) ); So now the same function can accept different kinds of output. The above can be applied in lots of places to make your code more agile. 6. Omit the closing php tag if it is the last thing in a script I wonder why this tip is omitted from so many blog posts on php tips. <?phpecho "Hello";//Now dont close this tag This will save you lots of problem. Lets take an example : A class file super_class.php <?phpclass super_class{ function super_function() { //super code }}?>//super extra character after the closing tag Now index.php require_once('super_class.php');//echo an image or pdf , or set the cookies or session data And you will get Headers already send error. Why ? because the "super extra character" has been echoed , and all headers went along with that. Now you start debugging. You may have to waste many hours to find the super extra space. Hence make it a habit to omit the closing tag : <?phpclass super_class{ function super_function() { //super code }}//No closing tag Thats better. 7. Collect all output at one place , and output at one shot to the browser This is called output buffering. Lets say you have been echoing content from different functions like this : function print_header(){ echo "<div id='header'>Site Log and Login links</div>";}function print_footer(){ echo "<div id='footer'>Site was made by me</div>";}print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}print_footer(); Instead of doing like that , first collect all output in one place. You can either store it inside variables in the functions or use ob_start and ob_end_clean. So now it should look like function print_header(){ $o = "<div id='header'>Site Log and Login links</div>"; return $o;}function print_footer(){ $o = "<div id='footer'>Site was made by me</div>"; return $o;}echo print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}echo print_footer(); So why should you do output buffering : You can change the output just before sending it to browser if you need to. Think about doing some str_replaces , or may be preg_replaces or may be adding some extra html at the end like profiler/debugger output Its a bad idea to send output to browser and do php processing at the same time. Have you ever seen a website where there is a Fatal error in the sidebar or in a box in the middle of the screen. You know why that happens ? Because processing and output are being mixed. 8. Send correct mime types via header when outputting non-html content Lets echo some xml. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataecho $xml; Works fine. But it needs some improvement. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataheader("content-type: text/xml");echo $xml; Note that header line. That line tells the browser that the content is xml content. So the browser can handle it correctly. Many javascript libraries also rely on header information. Similarly for javascript , css , jpg image , png image : Javascript header("content-type: application/x-javascript");echo "var a = 10"; CSS header("content-type: text/css");echo "#div id { background:#000; }"; 9. Set the correct character encoding for a mysql connection Ever faced a problem that unicode/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation. $host = 'localhost';$username = 'root';$password = 'super_secret';//Attempt to connect to database$c = mysqli_connect($host , $username, $password); //Check connection validityif (!$c) { die ("Could not connect to the database host: <br />". mysqli_connect_error());} //Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){ die('mysqli_set_charset() failed');} Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application. Otherwise what will happen ? You will see lots of boxes and ???????? in non english text. 10. Use htmlentities with the correct characterset option Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc. $value = htmlentities($this->value , ENT_QUOTES , 'UTF-8'); Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual. 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php. Use apache mod_gzip/mod_deflate to compress content via the .htaccess file. 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php. $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= "'$image' ,";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;//Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,]; Be smart. use json_encode : $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;//Output is : var images = ["myself.png","friends.png","colleagues.png"] Isn't that neat ? 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of "debugging" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on. Make sure that your application is as intelligent as possible and reports the most important information in the shortest time. $contents = "All the content";$file_path = "/var/www/project/content.txt";file_put_contents($file_path , $contents); That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons : Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file. $contents = "All the content";$dir = '/var/www/project';$file_path = $dir . "/content.txt";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die("Directory $dir is not writable, or does not exist. Please check");} By doing this you get the accurate information that where is a file write failing and why 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are "accessible" outside. Otherwise for example the files may be created by "php" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on. // Read and write for owner, read for everybody elsechmod("/somedir/somefile", 0644);// Everything for owner, read and execute for otherschmod("/somedir/somefile", 0755); 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ //Save the things} The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this : if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ //Save the things} Now you are free from the value the submit button 16. Use static variables in function where they always have same value //Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} Instead use static variables as : //Delay for some timefunction delay(){ static $sync_delay = null; if($sync_delay == null) { $sync_delay = get_option('sync_delay'); } echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} 17. Don't use the $_SESSION variable directly Some simple examples are : $_SESSION['username'] = $username;$username = $_SESSION['username']; But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain. Hence use application specific keys with wrapper functions : define('APP_ID' , 'abc_corp_ecommerce');//Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}//Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;} 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like : function utility_a(){ //This function does a utility thing like string processing}function utility_b(){ //This function does nother utility thing like database processing}function utility_c(){ //This function is ...} And you use the function throughout your application freely. You may want to wrap them into a class as static functions : class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}//and call them as $a = Utility::utility_a();$b = Utility::utility_b(); One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else. 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++; Its absolutely a WASTE. Write if($a == true){ $a_count++;} Dont try to make your code shorter by eating up syntax. Rather make your logic shorter. Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this : foreach($arr as $c => $v){ $arr[$c] = trim($v);} But it can more cleaner with array_map : $arr = array_map('trim' , $arr); This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more. 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters. The php filter extension provides simple way to validate or check values as being a valid 'something'. 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate']; Its a good habit. 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded : $db_records_in_array_format; //This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; //2MB moresome_function($cc); //Another 2MB ? The above thing is common when importing a csv file or exporting table to a csv file Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays. Consider passing them by reference , or storing them in a class variable : $a = get_large_array();pass_to_function(&$a); by doing this the same variable (and not its copy) will be available to the function. Check documentation class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { //process $this->a }} unset them as soon as possible , so that memory is freed and rest of the script can relax. Here is a simple demonstration of how assign by reference can save memory in some cases <?phpini_set('display_errors' , true);error_reporting(E_ALL);$a = array();for($i = 0; $i < 100000 ; $i++){ $a[$i] = 'A'.$i;}echo 'Memory usage in MB : '. memory_get_usage() / 1000000 . '<br />';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() / 1000000 . '<br />';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() / 1000000 . '<br />';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() / 1000000 . '<br />'; The output on a typical php 5.4 machine is : Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more. 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this : function add_to_cart(){ $db = new Database(); $db->query("INSERT INTO cart .....");}function empty_cart(){ $db = new Database(); $db->query("DELETE FROM cart .....");} Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory. Use the singleton pattern for special cases like database connection. 26. Avoid direct SQL query , abstract it $query = "INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')";$db->query($query); //call to mysqli_query() The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like: All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries. A very simple example of an activerecord insert function can be like this : function insert_record($table_name , $data){ foreach($data as $key => $value) { //mysqli_real_escape_string $data[$key] = $db->mres($value); } $fields = implode(',' , array_keys($data)); $values = "'" . implode("','" , array_values($data)) . "'"; //Final query $query = "INSERT INTO {$table}($fields) VALUES($values)"; return $db->query($query);}//data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);//perform the INSERT queryinsert_record('users' , $data); The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse). This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise. 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again. Benefits : Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue. Storing session in database makes many other things easier like: Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example : <head> <base href="http://www.domain.com/store/"></head><body> <img src="/static/imghw/default1.png" data-src="happy.jpg" class="lazy" / alt="40+ Useful Php tips for beginners ? Part 1" ></body></html> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories. Lets take an example www.domain.com/store/home.php www.domain.com/store/products/ipad.php In home.php the following can be written : <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> But in ipad.php the links have to be like this : <a href="../home.php">Home</a><a href="ipad.php">Ipad</a> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag. <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products/ipad.php 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing. ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT); On production , the display should be disabled. ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark. After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set. ini_set('log_errors' , '1');ini_set('error_log' , '/path/to/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); Note : 1. The path '/path/to/errors.txt' should be writable by the web server for errors to be logged there. 2. A separate error file is specified , otherwise all logs would go inside the apache/web server error log and get mixed up with other apache errors. 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver). 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like /var/log dont have to searched. 5. Dont set error_reporting to 0. It will not log anything then. Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file. Set 'display_errors=On' in php.ini on development machine On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page. Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work. Set 'display_errors=Off' in php.ini on production machine Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away. 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results. On a 64 bit machine you can see such output. $ php -aInteractive shellphp > echo strtotime("0000-00-00 00:00:00");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600 But on a 32 bit machine all of them would give bool(false). Check here for more. What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines. 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this : set_time_limit(30);//Rest of the code It may not always work. Any execution that happens outside the script via system calls/os functions like socket operations, database operations etc. will not be under control of set_time_limit. So if a database operation takes lot of time or "hangs" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time. 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it. A better solution : /** Method to execute a command in the terminal Uses : 1. system 2. passthru 3. exec 4. shell_exec*/function terminal($command){ //system if(function_exists('system')) { ob_start(); system($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //passthru else if(function_exists('passthru')) { ob_start(); passthru($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //exec else if(function_exists('exec')) { exec($command , $output , $return_var); $output = implode("\n" , $output); } //shell_exec else if(function_exists('shell_exec')) { $output = shell_exec($command) ; } else { $output = 'Command execution not possible on this system'; $return_var = 1; } return array('output' => $output , 'status' => $return_var);}terminal('ls'); The above function will execute the shell command using whichever function is available , keeping your code consistent. 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user. 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise. Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind. 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily. Few popular libraries are : mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference. 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code. Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community. They contain user feedback, expert advice and useful code snippets. So check them out. 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!! 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc. The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more 1. Codeigniter 2. WordPress 3. Joomla CMS 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment. Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster. Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free. 本站聲明 本文內(nèi)容由網(wǎng)友自發(fā)貢獻,版權(quán)歸原作者所有,本站不承擔相應(yīng)法律責任。如您發(fā)現(xiàn)有涉嫌抄襲侵權(quán)的內(nèi)容,請聯(lián)系admin@php.cn 熱AI工具 Undress AI Tool 免費脫衣服圖片 Undresser.AI Undress 人工智能驅(qū)動的應(yīng)用程序,用于創(chuàng)建逼真的裸體照片 AI Clothes Remover 用于從照片中去除衣服的在線人工智能工具。 Clothoff.io AI脫衣機 Video Face Swap 使用我們完全免費的人工智能換臉工具輕松在任何視頻中換臉! 顯示更多 熱門文章 指南:恒星刀片保存文件位置/保存文件丟失/不保存 4 周前 By DDD Oguri Cap Build Guide |漂亮的德比志 2 周前 By Jack chen Agnes Tachyon Build Guide |漂亮的德比志 1 周前 By Jack chen 沙丘:覺醒 - 高級行星學家Quest演練 4 周前 By Jack chen 約會一切:德克和哈珀關(guān)系指南 4 周前 By Jack chen 顯示更多 熱工具 記事本++7.3.1 好用且免費的代碼編輯器 SublimeText3漢化版 中文版,非常好用 禪工作室 13.0.1 功能強大的PHP集成開發(fā)環(huán)境 Dreamweaver CS6 視覺化網(wǎng)頁開發(fā)工具 SublimeText3 Mac版 神級代碼編輯軟件(SublimeText3) 顯示更多 熱門話題 gmail郵箱登陸入口在哪里 8638 17 Java教程 1783 16 CakePHP 教程 1728 56 Laravel 教程 1578 28 PHP教程 1442 31 顯示更多 Related knowledge 如何在PHP中實施身份驗證和授權(quán)? Jun 20, 2025 am 01:03 AM tosecurelyhandleauthenticationandationallizationInphp,lofterTheSesteps:1.AlwaysHashPasswordSwithPassword_hash()andverifyusingspasspassword_verify(),usepreparedStatatementStopreventsqlineptions,andStoreSeruserDatain usseruserDatain $ _sessiveferterlogin.2.implementrole-2.imaccessccsccccccccccccccccccccccccc. 如何在PHP中安全地處理文件上傳? Jun 19, 2025 am 01:05 AM 要安全處理PHP中的文件上傳,核心在于驗證文件類型、重命名文件并限制權(quán)限。1.使用finfo_file()檢查真實MIME類型,僅允許特定類型如image/jpeg;2.用uniqid()生成隨機文件名,存儲至非Web根目錄;3.通過php.ini和HTML表單限制文件大小,設(shè)置目錄權(quán)限為0755;4.使用ClamAV掃描惡意軟件,增強安全性。這些步驟有效防止安全漏洞,確保文件上傳過程安全可靠。 PHP中==(松散比較)和===(嚴格的比較)之間有什么區(qū)別? Jun 19, 2025 am 01:07 AM 在PHP中,==與===的主要區(qū)別在于類型檢查的嚴格程度。==在比較前會進行類型轉(zhuǎn)換,例如5=="5"返回true,而===要求值和類型都相同才會返回true,例如5==="5"返回false。使用場景上,===更安全應(yīng)優(yōu)先使用,==僅在需要類型轉(zhuǎn)換時使用。 如何在PHP( - , *, /,%)中執(zhí)行算術(shù)操作? Jun 19, 2025 pm 05:13 PM PHP中使用基本數(shù)學運算的方法如下:1.加法用 號,支持整數(shù)和浮點數(shù),也可用于變量,字符串數(shù)字會自動轉(zhuǎn)換但不推薦依賴;2.減法用-號,變量同理,類型轉(zhuǎn)換同樣適用;3.乘法用*號,適用于數(shù)字及類似字符串;4.除法用/號,需避免除以零,并注意結(jié)果可能是浮點數(shù);5.取模用%號,可用于判斷奇偶數(shù),處理負數(shù)時余數(shù)符號與被除數(shù)一致。正確使用這些運算符的關(guān)鍵在于確保數(shù)據(jù)類型清晰并處理好邊界情況。 如何與PHP的NOSQL數(shù)據(jù)庫(例如MongoDB,Redis)進行交互? Jun 19, 2025 am 01:07 AM 是的,PHP可以通過特定擴展或庫與MongoDB和Redis等NoSQL數(shù)據(jù)庫交互。首先,使用MongoDBPHP驅(qū)動(通過PECL或Composer安裝)創(chuàng)建客戶端實例并操作數(shù)據(jù)庫及集合,支持插入、查詢、聚合等操作;其次,使用Predis庫或phpredis擴展連接Redis,執(zhí)行鍵值設(shè)置與獲取,推薦phpredis用于高性能場景,Predis則便于快速部署;兩者均適用于生產(chǎn)環(huán)境且文檔完善。 我如何了解最新的PHP開發(fā)和最佳實踐? Jun 23, 2025 am 12:56 AM TostaycurrentwithPHPdevelopmentsandbestpractices,followkeynewssourceslikePHP.netandPHPWeekly,engagewithcommunitiesonforumsandconferences,keeptoolingupdatedandgraduallyadoptnewfeatures,andreadorcontributetoopensourceprojects.First,followreliablesource 什么是PHP,為什么它用于Web開發(fā)? Jun 23, 2025 am 12:55 AM PHPbecamepopularforwebdevelopmentduetoitseaseoflearning,seamlessintegrationwithHTML,widespreadhostingsupport,andalargeecosystemincludingframeworkslikeLaravelandCMSplatformslikeWordPress.Itexcelsinhandlingformsubmissions,managingusersessions,interacti 如何設(shè)置PHP時區(qū)? Jun 25, 2025 am 01:00 AM tosetTherightTimeZoneInphp,restate_default_timezone_set()functionAtthestArtofyourscriptWithavalIdidentIdentifiersuchas'america/new_york'.1.usedate_default_default_timezone_set_set() See all articles
The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this :<\/p>
if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ \/\/Save the things}<\/pre> Now you are free from the value the submit button<\/p> 16. Use static variables in function where they always have same value \/\/Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); \t echo \"Delaying for $sync_delay seconds...\"; sleep($sync_delay); echo \"Done \";}<\/pre> Instead use static variables as :<\/p> \/\/Delay for some timefunction delay(){ static $sync_delay = null;\t if($sync_delay == null) {\t$sync_delay = get_option('sync_delay'); }\t echo \"Delaying for $sync_delay seconds...\"; sleep($sync_delay); echo \"Done \";}<\/pre> 17. Don't use the $_SESSION variable directly Some simple examples are :<\/p> $_SESSION['username'] = $username;$username = $_SESSION['username'];<\/pre> But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain.<\/p> Hence use application specific keys with wrapper functions :<\/p> define('APP_ID' , 'abc_corp_ecommerce');\/\/Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}\/\/Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;}<\/pre> 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like :<\/p> function utility_a(){ \/\/This function does a utility thing like string processing}function utility_b(){ \/\/This function does nother utility thing like database processing}function utility_c(){ \/\/This function is ...}<\/pre> And you use the function throughout your application freely. You may want to wrap them into a class as static functions :<\/p> class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}\/\/and call them as $a = Utility::utility_a();$b = Utility::utility_b();<\/pre> One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else.<\/p> 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++;<\/pre> Its absolutely a WASTE.<\/p> Write<\/p> if($a == true){ $a_count++;}<\/pre> Dont try to make your code shorter by eating up syntax. Rather make your logic shorter.<\/p> Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this :<\/p> foreach($arr as $c => $v){\t$arr[$c] = trim($v);}<\/pre> But it can more cleaner with array_map :<\/p> $arr = array_map('trim' , $arr);<\/pre> This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more.<\/p> 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters.<\/p> The php filter extension provides simple way to validate or check values as being a valid 'something'.<\/p> 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate'];<\/pre> Its a good habit.<\/p> 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose<\/p> 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded :<\/p> $db_records_in_array_format; \/\/This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; \/\/2MB moresome_function($cc); \/\/Another 2MB ?<\/pre> The above thing is common when importing a csv file or exporting table to a csv file<\/p> Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays.<\/p> Consider passing them by reference , or storing them in a class variable :<\/p> $a = get_large_array();pass_to_function(&$a);<\/pre> by doing this the same variable (and not its copy) will be available to the function. Check documentation<\/p> class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { \/\/process $this->a }}<\/pre> unset them as soon as possible , so that memory is freed and rest of the script can relax.<\/p> Here is a simple demonstration of how assign by reference can save memory in some cases<\/p> ';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() \/ 1000000 . '';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() \/ 1000000 . '';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() \/ 1000000 . '';<\/pre> The output on a typical php 5.4 machine is :<\/p> Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 <\/p> So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more.<\/p> 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this :<\/p> function add_to_cart(){ $db = new Database(); $db->query(\"INSERT INTO cart .....\");}function empty_cart(){ $db = new Database(); $db->query(\"DELETE FROM cart .....\");}<\/pre> Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory.<\/p> Use the singleton pattern for special cases like database connection.<\/p> 26. Avoid direct SQL query , abstract it $query = \"INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')\";$db->query($query); \/\/call to mysqli_query()<\/pre> The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like:<\/p> All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord<\/p> It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries.<\/p> A very simple example of an activerecord insert function can be like this :<\/p> function insert_record($table_name , $data){ foreach($data as $key => $value) {\t\/\/mysqli_real_escape_string $data[$key] = $db->mres($value); }\t\t $fields = implode(',' , array_keys($data)); $values = \"'\" . implode(\"','\" , array_values($data)) . \"'\"; \/\/Final query\t $query = \"INSERT INTO {$table}($fields) VALUES($values)\";\t\t return $db->query($query);}\/\/data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);\/\/perform the INSERT queryinsert_record('users' , $data);<\/pre> The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse).<\/p> This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise.<\/p> 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again.<\/p> Benefits :<\/p> Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue.<\/p> Storing session in database makes many other things easier like:<\/p> Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines\/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example :<\/p> <\/head> <\/body><\/html><\/pre> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories.<\/p> Lets take an example<\/p> www.domain.com\/store\/home.php www.domain.com\/store\/products\/ipad.php<\/p> In home.php the following can be written :<\/p> Home<\/a>Ipad<\/a><\/pre> But in ipad.php the links have to be like this :<\/p> Home<\/a>Ipad<\/a><\/pre> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag.<\/p> <\/head>Home<\/a>Ipad<\/a><\/body><\/html><\/pre> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products\/ipad.php<\/p> 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing.<\/p> ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT);<\/pre> On production , the display should be disabled.<\/p> ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark.<\/p> After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set.<\/p> ini_set('log_errors' , '1');ini_set('error_log' , '\/path\/to\/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> Note :<\/p> 1. The path '\/path\/to\/errors.txt' should be writable by the web server for errors to be logged there.<\/p> 2. A separate error file is specified , otherwise all logs would go inside the apache\/web server error log and get mixed up with other apache errors.<\/p> 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver).<\/p> 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like \/var\/log dont have to searched.<\/p> 5. Dont set error_reporting to 0. It will not log anything then.<\/p> Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file.<\/p> Set 'display_errors=On' in php.ini on development machine<\/p> On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page.<\/p> Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work.<\/p> Set 'display_errors=Off' in php.ini on production machine<\/p> Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away.<\/p> 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results.<\/p> On a 64 bit machine you can see such output.<\/p> $ php -aInteractive shellphp > echo strtotime(\"0000-00-00 00:00:00\");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600<\/pre> But on a 32 bit machine all of them would give bool(false). Check here for more.<\/p> What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines.<\/p> 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this :<\/p> set_time_limit(30);\/\/Rest of the code<\/pre> It may not always work. Any execution that happens outside the script via system calls\/os functions like socket operations, database operations etc. will not be under control of set_time_limit.<\/p> So if a database operation takes lot of time or \"hangs\" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time.<\/p> 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it.<\/p> A better solution :<\/p> \/**\tMethod to execute a command in the terminal\tUses :\t1. system\t2. passthru\t3. exec\t4. shell_exec*\/function terminal($command){\t\/\/system\tif(function_exists('system'))\t{\t\tob_start();\t\tsystem($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/passthru\telse if(function_exists('passthru'))\t{\t\tob_start();\t\tpassthru($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/exec\telse if(function_exists('exec'))\t{\t\texec($command , $output , $return_var);\t\t$output = implode(\"\\n\" , $output);\t}\t\/\/shell_exec\telse if(function_exists('shell_exec'))\t{\t\t$output = shell_exec($command) ;\t}\telse\t{\t\t$output = 'Command execution not possible on this system';\t\t$return_var = 1;\t}\treturn array('output' => $output , 'status' => $return_var);}terminal('ls');<\/pre> The above function will execute the shell command using whichever function is available , keeping your code consistent.<\/p> 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user.<\/p> 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise.<\/p> Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind.<\/p> 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily.<\/p> Few popular libraries are :<\/p> mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference.<\/p> 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code.<\/p> Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community.<\/p> They contain user feedback, expert advice and useful code snippets. So check them out.<\/p> 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!!<\/p> 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc.<\/p> The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more<\/p> 1. Codeigniter 2. WordPress 3. Joomla CMS<\/p> 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment.<\/p> Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster.<\/p> Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free.<\/p> "} 社區(qū) 文章 合集 問答 學習 課程 編程詞典 工具庫 開發(fā)工具 網(wǎng)站源碼 PHP 庫 JS特效 網(wǎng)站素材 擴展插件 AI工具 休閑 游戲下載 游戲教程 簡體中文 簡體中文 English 繁體中文 日本語 ??? Melayu Fran?ais Deutsch Login singup 首頁 后端開發(fā) php教程 40+ Useful Php tips for beginners ? Part 1 40+ Useful Php tips for beginners ? Part 1 WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB Jun 23, 2016 pm 02:37 PM PHP學習指南 http://www.binarytides.com/category/php-2/tutorial/ In this series we are going to look into some useful tips and techniques that can be used to improve and optimise your php code. Note that these php tips are meant for beginners and not those who are already using mvc frameworks etc. The Techniques 1. Do not use relative paths , instead define a ROOT path Its quite common to see such lines : require_once('http://www.cnblogs.com/lib/some_class.php'); This approach has many drawbacks : It first searches for directories specified in the include paths of php , then looks from the current directory. So many directories are checked. When a script is included by another script in a different directory , its base directory changes to that of the including script. Another issue , is that when a script is being run from cron , it may not have its parent directory as the working directory. So its a good idea to have absolute paths : define('ROOT' , '/var/www/project/');require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code Now this is an absolute path and will always stay constant. But we can improve this further. The directory /var/www/project can change , so do we change it everytime ? No instead we make it portable using magic constants like __FILE__ . Take a closer look : //suppose your script is /var/www/project/index.php//Then __FILE__ will always have that full path.define('ROOT' , pathinfo(__FILE__, PATHINFO_DIRNAME));require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code So now even if you shift your project to a different directory , like moving it to an online server , the same code will run without any changes. 2. Dont use require , include , require_once or include_once Your script could be including various files on top , like class libraries , files for utility and helper functions etc like this : require_once('lib/Database.php');require_once('lib/Mail.php');require_once('helpers/utitlity_functions.php'); This is rather primitive. The code needs to be more flexible. Write up helper functions to include things more easily. Lets take an example : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); require_once( $path ); }load_class('Database');load_class('Mail'); See any difference ? You must. It does not need any more explanation. You can improve this further if you wish to like this : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); if(file_exists($path)) { require_once( $path ); }} There are a lot of things that can be done with this : Search multiple directories for the same class file. Change the directory containing class files easily , without breaking the code anywhere. Use similar functions for loading files that contain helper functions , html content etc. 3. Maintain debugging environment in your application During development we echo database queries , dump variables which are creating problems , and then once the problem is solved , we comment them or erase them. But its a good idea to let everything stay and help in the long run On your development machine you can do this : define('ENVIRONMENT' , 'development');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } And on the server you can do this : define('ENVIRONMENT' , 'production');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } 4. Propagate status messages via session Status messages are those messages that are generated after doing a task. <?phpif($wrong_username || $wrong_password){ $msg = 'Invalid username or password';}?><html><body><?php echo $msg; ?><form>...</form></body></html> Code like that is common. Using variables to show status messages has limitations. They cannot be send via redirects (unless you propagate them as GET variables to the next script , which is very silly). In large scripts there might be multiple messages etc. Best way is to use session to propagate them (even if on same page). For this there has to be a session_start on every page. function set_flash($msg){ $_SESSION['message'] = $msg;}function get_flash(){ $msg = $_SESSION['message']; unset($_SESSION['message']); return $msg;} and in your script : <?phpif($wrong_username || $wrong_password){ set_flash('Invalid username or password');}?><html><body>Status is : <?php echo get_flash(); ?><form>...</form></body></html> 5. Make your functions flexible function add_to_cart($item_id , $qty){ $_SESSION['cart'][$item_id] = $qty;}add_to_cart( 'IPHONE3' , 2 ); When adding a single item you use the above function. When adding multiple items , will you create another function ? NO. Just make the function flexible enough to take different kinds of parameters. Have a closer look : function add_to_cart($item_id , $qty){ if(!is_array($item_id)) { $_SESSION['cart'][$item_id] = $qty; } else { foreach($item_id as $i_id => $qty) { $_SESSION['cart'][$i_id] = $qty; } }}add_to_cart( 'IPHONE3' , 2 );add_to_cart( array('IPHONE3' => 2 , 'IPAD' => 5) ); So now the same function can accept different kinds of output. The above can be applied in lots of places to make your code more agile. 6. Omit the closing php tag if it is the last thing in a script I wonder why this tip is omitted from so many blog posts on php tips. <?phpecho "Hello";//Now dont close this tag This will save you lots of problem. Lets take an example : A class file super_class.php <?phpclass super_class{ function super_function() { //super code }}?>//super extra character after the closing tag Now index.php require_once('super_class.php');//echo an image or pdf , or set the cookies or session data And you will get Headers already send error. Why ? because the "super extra character" has been echoed , and all headers went along with that. Now you start debugging. You may have to waste many hours to find the super extra space. Hence make it a habit to omit the closing tag : <?phpclass super_class{ function super_function() { //super code }}//No closing tag Thats better. 7. Collect all output at one place , and output at one shot to the browser This is called output buffering. Lets say you have been echoing content from different functions like this : function print_header(){ echo "<div id='header'>Site Log and Login links</div>";}function print_footer(){ echo "<div id='footer'>Site was made by me</div>";}print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}print_footer(); Instead of doing like that , first collect all output in one place. You can either store it inside variables in the functions or use ob_start and ob_end_clean. So now it should look like function print_header(){ $o = "<div id='header'>Site Log and Login links</div>"; return $o;}function print_footer(){ $o = "<div id='footer'>Site was made by me</div>"; return $o;}echo print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}echo print_footer(); So why should you do output buffering : You can change the output just before sending it to browser if you need to. Think about doing some str_replaces , or may be preg_replaces or may be adding some extra html at the end like profiler/debugger output Its a bad idea to send output to browser and do php processing at the same time. Have you ever seen a website where there is a Fatal error in the sidebar or in a box in the middle of the screen. You know why that happens ? Because processing and output are being mixed. 8. Send correct mime types via header when outputting non-html content Lets echo some xml. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataecho $xml; Works fine. But it needs some improvement. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataheader("content-type: text/xml");echo $xml; Note that header line. That line tells the browser that the content is xml content. So the browser can handle it correctly. Many javascript libraries also rely on header information. Similarly for javascript , css , jpg image , png image : Javascript header("content-type: application/x-javascript");echo "var a = 10"; CSS header("content-type: text/css");echo "#div id { background:#000; }"; 9. Set the correct character encoding for a mysql connection Ever faced a problem that unicode/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation. $host = 'localhost';$username = 'root';$password = 'super_secret';//Attempt to connect to database$c = mysqli_connect($host , $username, $password); //Check connection validityif (!$c) { die ("Could not connect to the database host: <br />". mysqli_connect_error());} //Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){ die('mysqli_set_charset() failed');} Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application. Otherwise what will happen ? You will see lots of boxes and ???????? in non english text. 10. Use htmlentities with the correct characterset option Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc. $value = htmlentities($this->value , ENT_QUOTES , 'UTF-8'); Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual. 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php. Use apache mod_gzip/mod_deflate to compress content via the .htaccess file. 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php. $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= "'$image' ,";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;//Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,]; Be smart. use json_encode : $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;//Output is : var images = ["myself.png","friends.png","colleagues.png"] Isn't that neat ? 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of "debugging" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on. Make sure that your application is as intelligent as possible and reports the most important information in the shortest time. $contents = "All the content";$file_path = "/var/www/project/content.txt";file_put_contents($file_path , $contents); That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons : Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file. $contents = "All the content";$dir = '/var/www/project';$file_path = $dir . "/content.txt";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die("Directory $dir is not writable, or does not exist. Please check");} By doing this you get the accurate information that where is a file write failing and why 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are "accessible" outside. Otherwise for example the files may be created by "php" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on. // Read and write for owner, read for everybody elsechmod("/somedir/somefile", 0644);// Everything for owner, read and execute for otherschmod("/somedir/somefile", 0755); 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ //Save the things} The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this : if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ //Save the things} Now you are free from the value the submit button 16. Use static variables in function where they always have same value //Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} Instead use static variables as : //Delay for some timefunction delay(){ static $sync_delay = null; if($sync_delay == null) { $sync_delay = get_option('sync_delay'); } echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} 17. Don't use the $_SESSION variable directly Some simple examples are : $_SESSION['username'] = $username;$username = $_SESSION['username']; But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain. Hence use application specific keys with wrapper functions : define('APP_ID' , 'abc_corp_ecommerce');//Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}//Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;} 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like : function utility_a(){ //This function does a utility thing like string processing}function utility_b(){ //This function does nother utility thing like database processing}function utility_c(){ //This function is ...} And you use the function throughout your application freely. You may want to wrap them into a class as static functions : class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}//and call them as $a = Utility::utility_a();$b = Utility::utility_b(); One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else. 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++; Its absolutely a WASTE. Write if($a == true){ $a_count++;} Dont try to make your code shorter by eating up syntax. Rather make your logic shorter. Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this : foreach($arr as $c => $v){ $arr[$c] = trim($v);} But it can more cleaner with array_map : $arr = array_map('trim' , $arr); This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more. 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters. The php filter extension provides simple way to validate or check values as being a valid 'something'. 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate']; Its a good habit. 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded : $db_records_in_array_format; //This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; //2MB moresome_function($cc); //Another 2MB ? The above thing is common when importing a csv file or exporting table to a csv file Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays. Consider passing them by reference , or storing them in a class variable : $a = get_large_array();pass_to_function(&$a); by doing this the same variable (and not its copy) will be available to the function. Check documentation class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { //process $this->a }} unset them as soon as possible , so that memory is freed and rest of the script can relax. Here is a simple demonstration of how assign by reference can save memory in some cases <?phpini_set('display_errors' , true);error_reporting(E_ALL);$a = array();for($i = 0; $i < 100000 ; $i++){ $a[$i] = 'A'.$i;}echo 'Memory usage in MB : '. memory_get_usage() / 1000000 . '<br />';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() / 1000000 . '<br />';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() / 1000000 . '<br />';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() / 1000000 . '<br />'; The output on a typical php 5.4 machine is : Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more. 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this : function add_to_cart(){ $db = new Database(); $db->query("INSERT INTO cart .....");}function empty_cart(){ $db = new Database(); $db->query("DELETE FROM cart .....");} Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory. Use the singleton pattern for special cases like database connection. 26. Avoid direct SQL query , abstract it $query = "INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')";$db->query($query); //call to mysqli_query() The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like: All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries. A very simple example of an activerecord insert function can be like this : function insert_record($table_name , $data){ foreach($data as $key => $value) { //mysqli_real_escape_string $data[$key] = $db->mres($value); } $fields = implode(',' , array_keys($data)); $values = "'" . implode("','" , array_values($data)) . "'"; //Final query $query = "INSERT INTO {$table}($fields) VALUES($values)"; return $db->query($query);}//data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);//perform the INSERT queryinsert_record('users' , $data); The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse). This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise. 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again. Benefits : Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue. Storing session in database makes many other things easier like: Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example : <head> <base href="http://www.domain.com/store/"></head><body> <img src="/static/imghw/default1.png" data-src="happy.jpg" class="lazy" / alt="40+ Useful Php tips for beginners ? Part 1" ></body></html> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories. Lets take an example www.domain.com/store/home.php www.domain.com/store/products/ipad.php In home.php the following can be written : <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> But in ipad.php the links have to be like this : <a href="../home.php">Home</a><a href="ipad.php">Ipad</a> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag. <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products/ipad.php 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing. ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT); On production , the display should be disabled. ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark. After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set. ini_set('log_errors' , '1');ini_set('error_log' , '/path/to/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); Note : 1. The path '/path/to/errors.txt' should be writable by the web server for errors to be logged there. 2. A separate error file is specified , otherwise all logs would go inside the apache/web server error log and get mixed up with other apache errors. 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver). 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like /var/log dont have to searched. 5. Dont set error_reporting to 0. It will not log anything then. Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file. Set 'display_errors=On' in php.ini on development machine On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page. Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work. Set 'display_errors=Off' in php.ini on production machine Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away. 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results. On a 64 bit machine you can see such output. $ php -aInteractive shellphp > echo strtotime("0000-00-00 00:00:00");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600 But on a 32 bit machine all of them would give bool(false). Check here for more. What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines. 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this : set_time_limit(30);//Rest of the code It may not always work. Any execution that happens outside the script via system calls/os functions like socket operations, database operations etc. will not be under control of set_time_limit. So if a database operation takes lot of time or "hangs" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time. 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it. A better solution : /** Method to execute a command in the terminal Uses : 1. system 2. passthru 3. exec 4. shell_exec*/function terminal($command){ //system if(function_exists('system')) { ob_start(); system($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //passthru else if(function_exists('passthru')) { ob_start(); passthru($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //exec else if(function_exists('exec')) { exec($command , $output , $return_var); $output = implode("\n" , $output); } //shell_exec else if(function_exists('shell_exec')) { $output = shell_exec($command) ; } else { $output = 'Command execution not possible on this system'; $return_var = 1; } return array('output' => $output , 'status' => $return_var);}terminal('ls'); The above function will execute the shell command using whichever function is available , keeping your code consistent. 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user. 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise. Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind. 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily. Few popular libraries are : mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference. 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code. Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community. They contain user feedback, expert advice and useful code snippets. So check them out. 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!! 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc. The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more 1. Codeigniter 2. WordPress 3. Joomla CMS 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment. Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster. Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free. 本站聲明 本文內(nèi)容由網(wǎng)友自發(fā)貢獻,版權(quán)歸原作者所有,本站不承擔相應(yīng)法律責任。如您發(fā)現(xiàn)有涉嫌抄襲侵權(quán)的內(nèi)容,請聯(lián)系admin@php.cn 熱AI工具 Undress AI Tool 免費脫衣服圖片 Undresser.AI Undress 人工智能驅(qū)動的應(yīng)用程序,用于創(chuàng)建逼真的裸體照片 AI Clothes Remover 用于從照片中去除衣服的在線人工智能工具。 Clothoff.io AI脫衣機 Video Face Swap 使用我們完全免費的人工智能換臉工具輕松在任何視頻中換臉! 顯示更多 熱門文章 指南:恒星刀片保存文件位置/保存文件丟失/不保存 4 周前 By DDD Oguri Cap Build Guide |漂亮的德比志 2 周前 By Jack chen Agnes Tachyon Build Guide |漂亮的德比志 1 周前 By Jack chen 沙丘:覺醒 - 高級行星學家Quest演練 4 周前 By Jack chen 約會一切:德克和哈珀關(guān)系指南 4 周前 By Jack chen 顯示更多 熱工具 記事本++7.3.1 好用且免費的代碼編輯器 SublimeText3漢化版 中文版,非常好用 禪工作室 13.0.1 功能強大的PHP集成開發(fā)環(huán)境 Dreamweaver CS6 視覺化網(wǎng)頁開發(fā)工具 SublimeText3 Mac版 神級代碼編輯軟件(SublimeText3) 顯示更多 熱門話題 gmail郵箱登陸入口在哪里 8638 17 Java教程 1783 16 CakePHP 教程 1728 56 Laravel 教程 1578 28 PHP教程 1442 31 顯示更多 Related knowledge 如何在PHP中實施身份驗證和授權(quán)? Jun 20, 2025 am 01:03 AM tosecurelyhandleauthenticationandationallizationInphp,lofterTheSesteps:1.AlwaysHashPasswordSwithPassword_hash()andverifyusingspasspassword_verify(),usepreparedStatatementStopreventsqlineptions,andStoreSeruserDatain usseruserDatain $ _sessiveferterlogin.2.implementrole-2.imaccessccsccccccccccccccccccccccccc. 如何在PHP中安全地處理文件上傳? Jun 19, 2025 am 01:05 AM 要安全處理PHP中的文件上傳,核心在于驗證文件類型、重命名文件并限制權(quán)限。1.使用finfo_file()檢查真實MIME類型,僅允許特定類型如image/jpeg;2.用uniqid()生成隨機文件名,存儲至非Web根目錄;3.通過php.ini和HTML表單限制文件大小,設(shè)置目錄權(quán)限為0755;4.使用ClamAV掃描惡意軟件,增強安全性。這些步驟有效防止安全漏洞,確保文件上傳過程安全可靠。 PHP中==(松散比較)和===(嚴格的比較)之間有什么區(qū)別? Jun 19, 2025 am 01:07 AM 在PHP中,==與===的主要區(qū)別在于類型檢查的嚴格程度。==在比較前會進行類型轉(zhuǎn)換,例如5=="5"返回true,而===要求值和類型都相同才會返回true,例如5==="5"返回false。使用場景上,===更安全應(yīng)優(yōu)先使用,==僅在需要類型轉(zhuǎn)換時使用。 如何在PHP( - , *, /,%)中執(zhí)行算術(shù)操作? Jun 19, 2025 pm 05:13 PM PHP中使用基本數(shù)學運算的方法如下:1.加法用 號,支持整數(shù)和浮點數(shù),也可用于變量,字符串數(shù)字會自動轉(zhuǎn)換但不推薦依賴;2.減法用-號,變量同理,類型轉(zhuǎn)換同樣適用;3.乘法用*號,適用于數(shù)字及類似字符串;4.除法用/號,需避免除以零,并注意結(jié)果可能是浮點數(shù);5.取模用%號,可用于判斷奇偶數(shù),處理負數(shù)時余數(shù)符號與被除數(shù)一致。正確使用這些運算符的關(guān)鍵在于確保數(shù)據(jù)類型清晰并處理好邊界情況。 如何與PHP的NOSQL數(shù)據(jù)庫(例如MongoDB,Redis)進行交互? Jun 19, 2025 am 01:07 AM 是的,PHP可以通過特定擴展或庫與MongoDB和Redis等NoSQL數(shù)據(jù)庫交互。首先,使用MongoDBPHP驅(qū)動(通過PECL或Composer安裝)創(chuàng)建客戶端實例并操作數(shù)據(jù)庫及集合,支持插入、查詢、聚合等操作;其次,使用Predis庫或phpredis擴展連接Redis,執(zhí)行鍵值設(shè)置與獲取,推薦phpredis用于高性能場景,Predis則便于快速部署;兩者均適用于生產(chǎn)環(huán)境且文檔完善。 我如何了解最新的PHP開發(fā)和最佳實踐? Jun 23, 2025 am 12:56 AM TostaycurrentwithPHPdevelopmentsandbestpractices,followkeynewssourceslikePHP.netandPHPWeekly,engagewithcommunitiesonforumsandconferences,keeptoolingupdatedandgraduallyadoptnewfeatures,andreadorcontributetoopensourceprojects.First,followreliablesource 什么是PHP,為什么它用于Web開發(fā)? Jun 23, 2025 am 12:55 AM PHPbecamepopularforwebdevelopmentduetoitseaseoflearning,seamlessintegrationwithHTML,widespreadhostingsupport,andalargeecosystemincludingframeworkslikeLaravelandCMSplatformslikeWordPress.Itexcelsinhandlingformsubmissions,managingusersessions,interacti 如何設(shè)置PHP時區(qū)? Jun 25, 2025 am 01:00 AM tosetTherightTimeZoneInphp,restate_default_timezone_set()functionAtthestArtofyourscriptWithavalIdidentIdentifiersuchas'america/new_york'.1.usedate_default_default_timezone_set_set() See all articles
Now you are free from the value the submit button<\/p> 16. Use static variables in function where they always have same value
\/\/Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); \t echo \"Delaying for $sync_delay seconds...\"; sleep($sync_delay); echo \"Done \";}<\/pre> Instead use static variables as :<\/p> \/\/Delay for some timefunction delay(){ static $sync_delay = null;\t if($sync_delay == null) {\t$sync_delay = get_option('sync_delay'); }\t echo \"Delaying for $sync_delay seconds...\"; sleep($sync_delay); echo \"Done \";}<\/pre> 17. Don't use the $_SESSION variable directly Some simple examples are :<\/p> $_SESSION['username'] = $username;$username = $_SESSION['username'];<\/pre> But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain.<\/p> Hence use application specific keys with wrapper functions :<\/p> define('APP_ID' , 'abc_corp_ecommerce');\/\/Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}\/\/Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;}<\/pre> 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like :<\/p> function utility_a(){ \/\/This function does a utility thing like string processing}function utility_b(){ \/\/This function does nother utility thing like database processing}function utility_c(){ \/\/This function is ...}<\/pre> And you use the function throughout your application freely. You may want to wrap them into a class as static functions :<\/p> class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}\/\/and call them as $a = Utility::utility_a();$b = Utility::utility_b();<\/pre> One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else.<\/p> 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++;<\/pre> Its absolutely a WASTE.<\/p> Write<\/p> if($a == true){ $a_count++;}<\/pre> Dont try to make your code shorter by eating up syntax. Rather make your logic shorter.<\/p> Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this :<\/p> foreach($arr as $c => $v){\t$arr[$c] = trim($v);}<\/pre> But it can more cleaner with array_map :<\/p> $arr = array_map('trim' , $arr);<\/pre> This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more.<\/p> 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters.<\/p> The php filter extension provides simple way to validate or check values as being a valid 'something'.<\/p> 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate'];<\/pre> Its a good habit.<\/p> 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose<\/p> 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded :<\/p> $db_records_in_array_format; \/\/This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; \/\/2MB moresome_function($cc); \/\/Another 2MB ?<\/pre> The above thing is common when importing a csv file or exporting table to a csv file<\/p> Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays.<\/p> Consider passing them by reference , or storing them in a class variable :<\/p> $a = get_large_array();pass_to_function(&$a);<\/pre> by doing this the same variable (and not its copy) will be available to the function. Check documentation<\/p> class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { \/\/process $this->a }}<\/pre> unset them as soon as possible , so that memory is freed and rest of the script can relax.<\/p> Here is a simple demonstration of how assign by reference can save memory in some cases<\/p> ';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() \/ 1000000 . '';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() \/ 1000000 . '';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() \/ 1000000 . '';<\/pre> The output on a typical php 5.4 machine is :<\/p> Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 <\/p> So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more.<\/p> 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this :<\/p> function add_to_cart(){ $db = new Database(); $db->query(\"INSERT INTO cart .....\");}function empty_cart(){ $db = new Database(); $db->query(\"DELETE FROM cart .....\");}<\/pre> Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory.<\/p> Use the singleton pattern for special cases like database connection.<\/p> 26. Avoid direct SQL query , abstract it $query = \"INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')\";$db->query($query); \/\/call to mysqli_query()<\/pre> The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like:<\/p> All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord<\/p> It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries.<\/p> A very simple example of an activerecord insert function can be like this :<\/p> function insert_record($table_name , $data){ foreach($data as $key => $value) {\t\/\/mysqli_real_escape_string $data[$key] = $db->mres($value); }\t\t $fields = implode(',' , array_keys($data)); $values = \"'\" . implode(\"','\" , array_values($data)) . \"'\"; \/\/Final query\t $query = \"INSERT INTO {$table}($fields) VALUES($values)\";\t\t return $db->query($query);}\/\/data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);\/\/perform the INSERT queryinsert_record('users' , $data);<\/pre> The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse).<\/p> This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise.<\/p> 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again.<\/p> Benefits :<\/p> Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue.<\/p> Storing session in database makes many other things easier like:<\/p> Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines\/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example :<\/p> <\/head> <\/body><\/html><\/pre> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories.<\/p> Lets take an example<\/p> www.domain.com\/store\/home.php www.domain.com\/store\/products\/ipad.php<\/p> In home.php the following can be written :<\/p> Home<\/a>Ipad<\/a><\/pre> But in ipad.php the links have to be like this :<\/p> Home<\/a>Ipad<\/a><\/pre> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag.<\/p> <\/head>Home<\/a>Ipad<\/a><\/body><\/html><\/pre> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products\/ipad.php<\/p> 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing.<\/p> ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT);<\/pre> On production , the display should be disabled.<\/p> ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark.<\/p> After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set.<\/p> ini_set('log_errors' , '1');ini_set('error_log' , '\/path\/to\/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> Note :<\/p> 1. The path '\/path\/to\/errors.txt' should be writable by the web server for errors to be logged there.<\/p> 2. A separate error file is specified , otherwise all logs would go inside the apache\/web server error log and get mixed up with other apache errors.<\/p> 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver).<\/p> 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like \/var\/log dont have to searched.<\/p> 5. Dont set error_reporting to 0. It will not log anything then.<\/p> Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file.<\/p> Set 'display_errors=On' in php.ini on development machine<\/p> On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page.<\/p> Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work.<\/p> Set 'display_errors=Off' in php.ini on production machine<\/p> Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away.<\/p> 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results.<\/p> On a 64 bit machine you can see such output.<\/p> $ php -aInteractive shellphp > echo strtotime(\"0000-00-00 00:00:00\");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600<\/pre> But on a 32 bit machine all of them would give bool(false). Check here for more.<\/p> What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines.<\/p> 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this :<\/p> set_time_limit(30);\/\/Rest of the code<\/pre> It may not always work. Any execution that happens outside the script via system calls\/os functions like socket operations, database operations etc. will not be under control of set_time_limit.<\/p> So if a database operation takes lot of time or \"hangs\" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time.<\/p> 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it.<\/p> A better solution :<\/p> \/**\tMethod to execute a command in the terminal\tUses :\t1. system\t2. passthru\t3. exec\t4. shell_exec*\/function terminal($command){\t\/\/system\tif(function_exists('system'))\t{\t\tob_start();\t\tsystem($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/passthru\telse if(function_exists('passthru'))\t{\t\tob_start();\t\tpassthru($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/exec\telse if(function_exists('exec'))\t{\t\texec($command , $output , $return_var);\t\t$output = implode(\"\\n\" , $output);\t}\t\/\/shell_exec\telse if(function_exists('shell_exec'))\t{\t\t$output = shell_exec($command) ;\t}\telse\t{\t\t$output = 'Command execution not possible on this system';\t\t$return_var = 1;\t}\treturn array('output' => $output , 'status' => $return_var);}terminal('ls');<\/pre> The above function will execute the shell command using whichever function is available , keeping your code consistent.<\/p> 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user.<\/p> 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise.<\/p> Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind.<\/p> 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily.<\/p> Few popular libraries are :<\/p> mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference.<\/p> 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code.<\/p> Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community.<\/p> They contain user feedback, expert advice and useful code snippets. So check them out.<\/p> 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!!<\/p> 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc.<\/p> The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more<\/p> 1. Codeigniter 2. WordPress 3. Joomla CMS<\/p> 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment.<\/p> Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster.<\/p> Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free.<\/p> "} 社區(qū) 文章 合集 問答 學習 課程 編程詞典 工具庫 開發(fā)工具 網(wǎng)站源碼 PHP 庫 JS特效 網(wǎng)站素材 擴展插件 AI工具 休閑 游戲下載 游戲教程 簡體中文 簡體中文 English 繁體中文 日本語 ??? Melayu Fran?ais Deutsch Login singup 首頁 后端開發(fā) php教程 40+ Useful Php tips for beginners ? Part 1 40+ Useful Php tips for beginners ? Part 1 WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB Jun 23, 2016 pm 02:37 PM PHP學習指南 http://www.binarytides.com/category/php-2/tutorial/ In this series we are going to look into some useful tips and techniques that can be used to improve and optimise your php code. Note that these php tips are meant for beginners and not those who are already using mvc frameworks etc. The Techniques 1. Do not use relative paths , instead define a ROOT path Its quite common to see such lines : require_once('http://www.cnblogs.com/lib/some_class.php'); This approach has many drawbacks : It first searches for directories specified in the include paths of php , then looks from the current directory. So many directories are checked. When a script is included by another script in a different directory , its base directory changes to that of the including script. Another issue , is that when a script is being run from cron , it may not have its parent directory as the working directory. So its a good idea to have absolute paths : define('ROOT' , '/var/www/project/');require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code Now this is an absolute path and will always stay constant. But we can improve this further. The directory /var/www/project can change , so do we change it everytime ? No instead we make it portable using magic constants like __FILE__ . Take a closer look : //suppose your script is /var/www/project/index.php//Then __FILE__ will always have that full path.define('ROOT' , pathinfo(__FILE__, PATHINFO_DIRNAME));require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code So now even if you shift your project to a different directory , like moving it to an online server , the same code will run without any changes. 2. Dont use require , include , require_once or include_once Your script could be including various files on top , like class libraries , files for utility and helper functions etc like this : require_once('lib/Database.php');require_once('lib/Mail.php');require_once('helpers/utitlity_functions.php'); This is rather primitive. The code needs to be more flexible. Write up helper functions to include things more easily. Lets take an example : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); require_once( $path ); }load_class('Database');load_class('Mail'); See any difference ? You must. It does not need any more explanation. You can improve this further if you wish to like this : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); if(file_exists($path)) { require_once( $path ); }} There are a lot of things that can be done with this : Search multiple directories for the same class file. Change the directory containing class files easily , without breaking the code anywhere. Use similar functions for loading files that contain helper functions , html content etc. 3. Maintain debugging environment in your application During development we echo database queries , dump variables which are creating problems , and then once the problem is solved , we comment them or erase them. But its a good idea to let everything stay and help in the long run On your development machine you can do this : define('ENVIRONMENT' , 'development');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } And on the server you can do this : define('ENVIRONMENT' , 'production');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } 4. Propagate status messages via session Status messages are those messages that are generated after doing a task. <?phpif($wrong_username || $wrong_password){ $msg = 'Invalid username or password';}?><html><body><?php echo $msg; ?><form>...</form></body></html> Code like that is common. Using variables to show status messages has limitations. They cannot be send via redirects (unless you propagate them as GET variables to the next script , which is very silly). In large scripts there might be multiple messages etc. Best way is to use session to propagate them (even if on same page). For this there has to be a session_start on every page. function set_flash($msg){ $_SESSION['message'] = $msg;}function get_flash(){ $msg = $_SESSION['message']; unset($_SESSION['message']); return $msg;} and in your script : <?phpif($wrong_username || $wrong_password){ set_flash('Invalid username or password');}?><html><body>Status is : <?php echo get_flash(); ?><form>...</form></body></html> 5. Make your functions flexible function add_to_cart($item_id , $qty){ $_SESSION['cart'][$item_id] = $qty;}add_to_cart( 'IPHONE3' , 2 ); When adding a single item you use the above function. When adding multiple items , will you create another function ? NO. Just make the function flexible enough to take different kinds of parameters. Have a closer look : function add_to_cart($item_id , $qty){ if(!is_array($item_id)) { $_SESSION['cart'][$item_id] = $qty; } else { foreach($item_id as $i_id => $qty) { $_SESSION['cart'][$i_id] = $qty; } }}add_to_cart( 'IPHONE3' , 2 );add_to_cart( array('IPHONE3' => 2 , 'IPAD' => 5) ); So now the same function can accept different kinds of output. The above can be applied in lots of places to make your code more agile. 6. Omit the closing php tag if it is the last thing in a script I wonder why this tip is omitted from so many blog posts on php tips. <?phpecho "Hello";//Now dont close this tag This will save you lots of problem. Lets take an example : A class file super_class.php <?phpclass super_class{ function super_function() { //super code }}?>//super extra character after the closing tag Now index.php require_once('super_class.php');//echo an image or pdf , or set the cookies or session data And you will get Headers already send error. Why ? because the "super extra character" has been echoed , and all headers went along with that. Now you start debugging. You may have to waste many hours to find the super extra space. Hence make it a habit to omit the closing tag : <?phpclass super_class{ function super_function() { //super code }}//No closing tag Thats better. 7. Collect all output at one place , and output at one shot to the browser This is called output buffering. Lets say you have been echoing content from different functions like this : function print_header(){ echo "<div id='header'>Site Log and Login links</div>";}function print_footer(){ echo "<div id='footer'>Site was made by me</div>";}print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}print_footer(); Instead of doing like that , first collect all output in one place. You can either store it inside variables in the functions or use ob_start and ob_end_clean. So now it should look like function print_header(){ $o = "<div id='header'>Site Log and Login links</div>"; return $o;}function print_footer(){ $o = "<div id='footer'>Site was made by me</div>"; return $o;}echo print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}echo print_footer(); So why should you do output buffering : You can change the output just before sending it to browser if you need to. Think about doing some str_replaces , or may be preg_replaces or may be adding some extra html at the end like profiler/debugger output Its a bad idea to send output to browser and do php processing at the same time. Have you ever seen a website where there is a Fatal error in the sidebar or in a box in the middle of the screen. You know why that happens ? Because processing and output are being mixed. 8. Send correct mime types via header when outputting non-html content Lets echo some xml. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataecho $xml; Works fine. But it needs some improvement. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataheader("content-type: text/xml");echo $xml; Note that header line. That line tells the browser that the content is xml content. So the browser can handle it correctly. Many javascript libraries also rely on header information. Similarly for javascript , css , jpg image , png image : Javascript header("content-type: application/x-javascript");echo "var a = 10"; CSS header("content-type: text/css");echo "#div id { background:#000; }"; 9. Set the correct character encoding for a mysql connection Ever faced a problem that unicode/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation. $host = 'localhost';$username = 'root';$password = 'super_secret';//Attempt to connect to database$c = mysqli_connect($host , $username, $password); //Check connection validityif (!$c) { die ("Could not connect to the database host: <br />". mysqli_connect_error());} //Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){ die('mysqli_set_charset() failed');} Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application. Otherwise what will happen ? You will see lots of boxes and ???????? in non english text. 10. Use htmlentities with the correct characterset option Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc. $value = htmlentities($this->value , ENT_QUOTES , 'UTF-8'); Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual. 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php. Use apache mod_gzip/mod_deflate to compress content via the .htaccess file. 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php. $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= "'$image' ,";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;//Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,]; Be smart. use json_encode : $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;//Output is : var images = ["myself.png","friends.png","colleagues.png"] Isn't that neat ? 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of "debugging" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on. Make sure that your application is as intelligent as possible and reports the most important information in the shortest time. $contents = "All the content";$file_path = "/var/www/project/content.txt";file_put_contents($file_path , $contents); That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons : Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file. $contents = "All the content";$dir = '/var/www/project';$file_path = $dir . "/content.txt";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die("Directory $dir is not writable, or does not exist. Please check");} By doing this you get the accurate information that where is a file write failing and why 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are "accessible" outside. Otherwise for example the files may be created by "php" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on. // Read and write for owner, read for everybody elsechmod("/somedir/somefile", 0644);// Everything for owner, read and execute for otherschmod("/somedir/somefile", 0755); 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ //Save the things} The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this : if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ //Save the things} Now you are free from the value the submit button 16. Use static variables in function where they always have same value //Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} Instead use static variables as : //Delay for some timefunction delay(){ static $sync_delay = null; if($sync_delay == null) { $sync_delay = get_option('sync_delay'); } echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} 17. Don't use the $_SESSION variable directly Some simple examples are : $_SESSION['username'] = $username;$username = $_SESSION['username']; But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain. Hence use application specific keys with wrapper functions : define('APP_ID' , 'abc_corp_ecommerce');//Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}//Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;} 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like : function utility_a(){ //This function does a utility thing like string processing}function utility_b(){ //This function does nother utility thing like database processing}function utility_c(){ //This function is ...} And you use the function throughout your application freely. You may want to wrap them into a class as static functions : class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}//and call them as $a = Utility::utility_a();$b = Utility::utility_b(); One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else. 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++; Its absolutely a WASTE. Write if($a == true){ $a_count++;} Dont try to make your code shorter by eating up syntax. Rather make your logic shorter. Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this : foreach($arr as $c => $v){ $arr[$c] = trim($v);} But it can more cleaner with array_map : $arr = array_map('trim' , $arr); This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more. 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters. The php filter extension provides simple way to validate or check values as being a valid 'something'. 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate']; Its a good habit. 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded : $db_records_in_array_format; //This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; //2MB moresome_function($cc); //Another 2MB ? The above thing is common when importing a csv file or exporting table to a csv file Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays. Consider passing them by reference , or storing them in a class variable : $a = get_large_array();pass_to_function(&$a); by doing this the same variable (and not its copy) will be available to the function. Check documentation class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { //process $this->a }} unset them as soon as possible , so that memory is freed and rest of the script can relax. Here is a simple demonstration of how assign by reference can save memory in some cases <?phpini_set('display_errors' , true);error_reporting(E_ALL);$a = array();for($i = 0; $i < 100000 ; $i++){ $a[$i] = 'A'.$i;}echo 'Memory usage in MB : '. memory_get_usage() / 1000000 . '<br />';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() / 1000000 . '<br />';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() / 1000000 . '<br />';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() / 1000000 . '<br />'; The output on a typical php 5.4 machine is : Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more. 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this : function add_to_cart(){ $db = new Database(); $db->query("INSERT INTO cart .....");}function empty_cart(){ $db = new Database(); $db->query("DELETE FROM cart .....");} Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory. Use the singleton pattern for special cases like database connection. 26. Avoid direct SQL query , abstract it $query = "INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')";$db->query($query); //call to mysqli_query() The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like: All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries. A very simple example of an activerecord insert function can be like this : function insert_record($table_name , $data){ foreach($data as $key => $value) { //mysqli_real_escape_string $data[$key] = $db->mres($value); } $fields = implode(',' , array_keys($data)); $values = "'" . implode("','" , array_values($data)) . "'"; //Final query $query = "INSERT INTO {$table}($fields) VALUES($values)"; return $db->query($query);}//data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);//perform the INSERT queryinsert_record('users' , $data); The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse). This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise. 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again. Benefits : Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue. Storing session in database makes many other things easier like: Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example : <head> <base href="http://www.domain.com/store/"></head><body> <img src="/static/imghw/default1.png" data-src="happy.jpg" class="lazy" / alt="40+ Useful Php tips for beginners ? Part 1" ></body></html> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories. Lets take an example www.domain.com/store/home.php www.domain.com/store/products/ipad.php In home.php the following can be written : <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> But in ipad.php the links have to be like this : <a href="../home.php">Home</a><a href="ipad.php">Ipad</a> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag. <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products/ipad.php 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing. ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT); On production , the display should be disabled. ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark. After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set. ini_set('log_errors' , '1');ini_set('error_log' , '/path/to/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); Note : 1. The path '/path/to/errors.txt' should be writable by the web server for errors to be logged there. 2. A separate error file is specified , otherwise all logs would go inside the apache/web server error log and get mixed up with other apache errors. 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver). 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like /var/log dont have to searched. 5. Dont set error_reporting to 0. It will not log anything then. Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file. Set 'display_errors=On' in php.ini on development machine On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page. Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work. Set 'display_errors=Off' in php.ini on production machine Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away. 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results. On a 64 bit machine you can see such output. $ php -aInteractive shellphp > echo strtotime("0000-00-00 00:00:00");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600 But on a 32 bit machine all of them would give bool(false). Check here for more. What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines. 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this : set_time_limit(30);//Rest of the code It may not always work. Any execution that happens outside the script via system calls/os functions like socket operations, database operations etc. will not be under control of set_time_limit. So if a database operation takes lot of time or "hangs" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time. 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it. A better solution : /** Method to execute a command in the terminal Uses : 1. system 2. passthru 3. exec 4. shell_exec*/function terminal($command){ //system if(function_exists('system')) { ob_start(); system($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //passthru else if(function_exists('passthru')) { ob_start(); passthru($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //exec else if(function_exists('exec')) { exec($command , $output , $return_var); $output = implode("\n" , $output); } //shell_exec else if(function_exists('shell_exec')) { $output = shell_exec($command) ; } else { $output = 'Command execution not possible on this system'; $return_var = 1; } return array('output' => $output , 'status' => $return_var);}terminal('ls'); The above function will execute the shell command using whichever function is available , keeping your code consistent. 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user. 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise. Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind. 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily. Few popular libraries are : mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference. 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code. Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community. They contain user feedback, expert advice and useful code snippets. So check them out. 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!! 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc. The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more 1. Codeigniter 2. WordPress 3. Joomla CMS 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment. Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster. Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free. 本站聲明 本文內(nèi)容由網(wǎng)友自發(fā)貢獻,版權(quán)歸原作者所有,本站不承擔相應(yīng)法律責任。如您發(fā)現(xiàn)有涉嫌抄襲侵權(quán)的內(nèi)容,請聯(lián)系admin@php.cn 熱AI工具 Undress AI Tool 免費脫衣服圖片 Undresser.AI Undress 人工智能驅(qū)動的應(yīng)用程序,用于創(chuàng)建逼真的裸體照片 AI Clothes Remover 用于從照片中去除衣服的在線人工智能工具。 Clothoff.io AI脫衣機 Video Face Swap 使用我們完全免費的人工智能換臉工具輕松在任何視頻中換臉! 顯示更多 熱門文章 指南:恒星刀片保存文件位置/保存文件丟失/不保存 4 周前 By DDD Oguri Cap Build Guide |漂亮的德比志 2 周前 By Jack chen Agnes Tachyon Build Guide |漂亮的德比志 1 周前 By Jack chen 沙丘:覺醒 - 高級行星學家Quest演練 4 周前 By Jack chen 約會一切:德克和哈珀關(guān)系指南 4 周前 By Jack chen 顯示更多 熱工具 記事本++7.3.1 好用且免費的代碼編輯器 SublimeText3漢化版 中文版,非常好用 禪工作室 13.0.1 功能強大的PHP集成開發(fā)環(huán)境 Dreamweaver CS6 視覺化網(wǎng)頁開發(fā)工具 SublimeText3 Mac版 神級代碼編輯軟件(SublimeText3) 顯示更多 熱門話題 gmail郵箱登陸入口在哪里 8638 17 Java教程 1783 16 CakePHP 教程 1728 56 Laravel 教程 1578 28 PHP教程 1442 31 顯示更多 Related knowledge 如何在PHP中實施身份驗證和授權(quán)? Jun 20, 2025 am 01:03 AM tosecurelyhandleauthenticationandationallizationInphp,lofterTheSesteps:1.AlwaysHashPasswordSwithPassword_hash()andverifyusingspasspassword_verify(),usepreparedStatatementStopreventsqlineptions,andStoreSeruserDatain usseruserDatain $ _sessiveferterlogin.2.implementrole-2.imaccessccsccccccccccccccccccccccccc. 如何在PHP中安全地處理文件上傳? Jun 19, 2025 am 01:05 AM 要安全處理PHP中的文件上傳,核心在于驗證文件類型、重命名文件并限制權(quán)限。1.使用finfo_file()檢查真實MIME類型,僅允許特定類型如image/jpeg;2.用uniqid()生成隨機文件名,存儲至非Web根目錄;3.通過php.ini和HTML表單限制文件大小,設(shè)置目錄權(quán)限為0755;4.使用ClamAV掃描惡意軟件,增強安全性。這些步驟有效防止安全漏洞,確保文件上傳過程安全可靠。 PHP中==(松散比較)和===(嚴格的比較)之間有什么區(qū)別? Jun 19, 2025 am 01:07 AM 在PHP中,==與===的主要區(qū)別在于類型檢查的嚴格程度。==在比較前會進行類型轉(zhuǎn)換,例如5=="5"返回true,而===要求值和類型都相同才會返回true,例如5==="5"返回false。使用場景上,===更安全應(yīng)優(yōu)先使用,==僅在需要類型轉(zhuǎn)換時使用。 如何在PHP( - , *, /,%)中執(zhí)行算術(shù)操作? Jun 19, 2025 pm 05:13 PM PHP中使用基本數(shù)學運算的方法如下:1.加法用 號,支持整數(shù)和浮點數(shù),也可用于變量,字符串數(shù)字會自動轉(zhuǎn)換但不推薦依賴;2.減法用-號,變量同理,類型轉(zhuǎn)換同樣適用;3.乘法用*號,適用于數(shù)字及類似字符串;4.除法用/號,需避免除以零,并注意結(jié)果可能是浮點數(shù);5.取模用%號,可用于判斷奇偶數(shù),處理負數(shù)時余數(shù)符號與被除數(shù)一致。正確使用這些運算符的關(guān)鍵在于確保數(shù)據(jù)類型清晰并處理好邊界情況。 如何與PHP的NOSQL數(shù)據(jù)庫(例如MongoDB,Redis)進行交互? Jun 19, 2025 am 01:07 AM 是的,PHP可以通過特定擴展或庫與MongoDB和Redis等NoSQL數(shù)據(jù)庫交互。首先,使用MongoDBPHP驅(qū)動(通過PECL或Composer安裝)創(chuàng)建客戶端實例并操作數(shù)據(jù)庫及集合,支持插入、查詢、聚合等操作;其次,使用Predis庫或phpredis擴展連接Redis,執(zhí)行鍵值設(shè)置與獲取,推薦phpredis用于高性能場景,Predis則便于快速部署;兩者均適用于生產(chǎn)環(huán)境且文檔完善。 我如何了解最新的PHP開發(fā)和最佳實踐? Jun 23, 2025 am 12:56 AM TostaycurrentwithPHPdevelopmentsandbestpractices,followkeynewssourceslikePHP.netandPHPWeekly,engagewithcommunitiesonforumsandconferences,keeptoolingupdatedandgraduallyadoptnewfeatures,andreadorcontributetoopensourceprojects.First,followreliablesource 什么是PHP,為什么它用于Web開發(fā)? Jun 23, 2025 am 12:55 AM PHPbecamepopularforwebdevelopmentduetoitseaseoflearning,seamlessintegrationwithHTML,widespreadhostingsupport,andalargeecosystemincludingframeworkslikeLaravelandCMSplatformslikeWordPress.Itexcelsinhandlingformsubmissions,managingusersessions,interacti 如何設(shè)置PHP時區(qū)? Jun 25, 2025 am 01:00 AM tosetTherightTimeZoneInphp,restate_default_timezone_set()functionAtthestArtofyourscriptWithavalIdidentIdentifiersuchas'america/new_york'.1.usedate_default_default_timezone_set_set() See all articles
Instead use static variables as :<\/p>
\/\/Delay for some timefunction delay(){ static $sync_delay = null;\t if($sync_delay == null) {\t$sync_delay = get_option('sync_delay'); }\t echo \"Delaying for $sync_delay seconds...\"; sleep($sync_delay); echo \"Done \";}<\/pre> 17. Don't use the $_SESSION variable directly Some simple examples are :<\/p> $_SESSION['username'] = $username;$username = $_SESSION['username'];<\/pre> But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain.<\/p> Hence use application specific keys with wrapper functions :<\/p> define('APP_ID' , 'abc_corp_ecommerce');\/\/Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}\/\/Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;}<\/pre> 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like :<\/p> function utility_a(){ \/\/This function does a utility thing like string processing}function utility_b(){ \/\/This function does nother utility thing like database processing}function utility_c(){ \/\/This function is ...}<\/pre> And you use the function throughout your application freely. You may want to wrap them into a class as static functions :<\/p> class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}\/\/and call them as $a = Utility::utility_a();$b = Utility::utility_b();<\/pre> One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else.<\/p> 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++;<\/pre> Its absolutely a WASTE.<\/p> Write<\/p> if($a == true){ $a_count++;}<\/pre> Dont try to make your code shorter by eating up syntax. Rather make your logic shorter.<\/p> Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this :<\/p> foreach($arr as $c => $v){\t$arr[$c] = trim($v);}<\/pre> But it can more cleaner with array_map :<\/p> $arr = array_map('trim' , $arr);<\/pre> This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more.<\/p> 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters.<\/p> The php filter extension provides simple way to validate or check values as being a valid 'something'.<\/p> 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate'];<\/pre> Its a good habit.<\/p> 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose<\/p> 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded :<\/p> $db_records_in_array_format; \/\/This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; \/\/2MB moresome_function($cc); \/\/Another 2MB ?<\/pre> The above thing is common when importing a csv file or exporting table to a csv file<\/p> Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays.<\/p> Consider passing them by reference , or storing them in a class variable :<\/p> $a = get_large_array();pass_to_function(&$a);<\/pre> by doing this the same variable (and not its copy) will be available to the function. Check documentation<\/p> class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { \/\/process $this->a }}<\/pre> unset them as soon as possible , so that memory is freed and rest of the script can relax.<\/p> Here is a simple demonstration of how assign by reference can save memory in some cases<\/p> ';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() \/ 1000000 . '';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() \/ 1000000 . '';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() \/ 1000000 . '';<\/pre> The output on a typical php 5.4 machine is :<\/p> Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 <\/p> So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more.<\/p> 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this :<\/p> function add_to_cart(){ $db = new Database(); $db->query(\"INSERT INTO cart .....\");}function empty_cart(){ $db = new Database(); $db->query(\"DELETE FROM cart .....\");}<\/pre> Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory.<\/p> Use the singleton pattern for special cases like database connection.<\/p> 26. Avoid direct SQL query , abstract it $query = \"INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')\";$db->query($query); \/\/call to mysqli_query()<\/pre> The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like:<\/p> All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord<\/p> It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries.<\/p> A very simple example of an activerecord insert function can be like this :<\/p> function insert_record($table_name , $data){ foreach($data as $key => $value) {\t\/\/mysqli_real_escape_string $data[$key] = $db->mres($value); }\t\t $fields = implode(',' , array_keys($data)); $values = \"'\" . implode(\"','\" , array_values($data)) . \"'\"; \/\/Final query\t $query = \"INSERT INTO {$table}($fields) VALUES($values)\";\t\t return $db->query($query);}\/\/data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);\/\/perform the INSERT queryinsert_record('users' , $data);<\/pre> The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse).<\/p> This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise.<\/p> 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again.<\/p> Benefits :<\/p> Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue.<\/p> Storing session in database makes many other things easier like:<\/p> Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines\/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example :<\/p> <\/head> <\/body><\/html><\/pre> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories.<\/p> Lets take an example<\/p> www.domain.com\/store\/home.php www.domain.com\/store\/products\/ipad.php<\/p> In home.php the following can be written :<\/p> Home<\/a>Ipad<\/a><\/pre> But in ipad.php the links have to be like this :<\/p> Home<\/a>Ipad<\/a><\/pre> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag.<\/p> <\/head>Home<\/a>Ipad<\/a><\/body><\/html><\/pre> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products\/ipad.php<\/p> 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing.<\/p> ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT);<\/pre> On production , the display should be disabled.<\/p> ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark.<\/p> After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set.<\/p> ini_set('log_errors' , '1');ini_set('error_log' , '\/path\/to\/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> Note :<\/p> 1. The path '\/path\/to\/errors.txt' should be writable by the web server for errors to be logged there.<\/p> 2. A separate error file is specified , otherwise all logs would go inside the apache\/web server error log and get mixed up with other apache errors.<\/p> 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver).<\/p> 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like \/var\/log dont have to searched.<\/p> 5. Dont set error_reporting to 0. It will not log anything then.<\/p> Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file.<\/p> Set 'display_errors=On' in php.ini on development machine<\/p> On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page.<\/p> Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work.<\/p> Set 'display_errors=Off' in php.ini on production machine<\/p> Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away.<\/p> 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results.<\/p> On a 64 bit machine you can see such output.<\/p> $ php -aInteractive shellphp > echo strtotime(\"0000-00-00 00:00:00\");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600<\/pre> But on a 32 bit machine all of them would give bool(false). Check here for more.<\/p> What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines.<\/p> 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this :<\/p> set_time_limit(30);\/\/Rest of the code<\/pre> It may not always work. Any execution that happens outside the script via system calls\/os functions like socket operations, database operations etc. will not be under control of set_time_limit.<\/p> So if a database operation takes lot of time or \"hangs\" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time.<\/p> 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it.<\/p> A better solution :<\/p> \/**\tMethod to execute a command in the terminal\tUses :\t1. system\t2. passthru\t3. exec\t4. shell_exec*\/function terminal($command){\t\/\/system\tif(function_exists('system'))\t{\t\tob_start();\t\tsystem($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/passthru\telse if(function_exists('passthru'))\t{\t\tob_start();\t\tpassthru($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/exec\telse if(function_exists('exec'))\t{\t\texec($command , $output , $return_var);\t\t$output = implode(\"\\n\" , $output);\t}\t\/\/shell_exec\telse if(function_exists('shell_exec'))\t{\t\t$output = shell_exec($command) ;\t}\telse\t{\t\t$output = 'Command execution not possible on this system';\t\t$return_var = 1;\t}\treturn array('output' => $output , 'status' => $return_var);}terminal('ls');<\/pre> The above function will execute the shell command using whichever function is available , keeping your code consistent.<\/p> 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user.<\/p> 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise.<\/p> Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind.<\/p> 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily.<\/p> Few popular libraries are :<\/p> mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference.<\/p> 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code.<\/p> Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community.<\/p> They contain user feedback, expert advice and useful code snippets. So check them out.<\/p> 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!!<\/p> 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc.<\/p> The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more<\/p> 1. Codeigniter 2. WordPress 3. Joomla CMS<\/p> 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment.<\/p> Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster.<\/p> Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free.<\/p> "} 社區(qū) 文章 合集 問答 學習 課程 編程詞典 工具庫 開發(fā)工具 網(wǎng)站源碼 PHP 庫 JS特效 網(wǎng)站素材 擴展插件 AI工具 休閑 游戲下載 游戲教程 簡體中文 簡體中文 English 繁體中文 日本語 ??? Melayu Fran?ais Deutsch Login singup 首頁 后端開發(fā) php教程 40+ Useful Php tips for beginners ? Part 1 40+ Useful Php tips for beginners ? Part 1 WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB Jun 23, 2016 pm 02:37 PM PHP學習指南 http://www.binarytides.com/category/php-2/tutorial/ In this series we are going to look into some useful tips and techniques that can be used to improve and optimise your php code. Note that these php tips are meant for beginners and not those who are already using mvc frameworks etc. The Techniques 1. Do not use relative paths , instead define a ROOT path Its quite common to see such lines : require_once('http://www.cnblogs.com/lib/some_class.php'); This approach has many drawbacks : It first searches for directories specified in the include paths of php , then looks from the current directory. So many directories are checked. When a script is included by another script in a different directory , its base directory changes to that of the including script. Another issue , is that when a script is being run from cron , it may not have its parent directory as the working directory. So its a good idea to have absolute paths : define('ROOT' , '/var/www/project/');require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code Now this is an absolute path and will always stay constant. But we can improve this further. The directory /var/www/project can change , so do we change it everytime ? No instead we make it portable using magic constants like __FILE__ . Take a closer look : //suppose your script is /var/www/project/index.php//Then __FILE__ will always have that full path.define('ROOT' , pathinfo(__FILE__, PATHINFO_DIRNAME));require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code So now even if you shift your project to a different directory , like moving it to an online server , the same code will run without any changes. 2. Dont use require , include , require_once or include_once Your script could be including various files on top , like class libraries , files for utility and helper functions etc like this : require_once('lib/Database.php');require_once('lib/Mail.php');require_once('helpers/utitlity_functions.php'); This is rather primitive. The code needs to be more flexible. Write up helper functions to include things more easily. Lets take an example : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); require_once( $path ); }load_class('Database');load_class('Mail'); See any difference ? You must. It does not need any more explanation. You can improve this further if you wish to like this : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); if(file_exists($path)) { require_once( $path ); }} There are a lot of things that can be done with this : Search multiple directories for the same class file. Change the directory containing class files easily , without breaking the code anywhere. Use similar functions for loading files that contain helper functions , html content etc. 3. Maintain debugging environment in your application During development we echo database queries , dump variables which are creating problems , and then once the problem is solved , we comment them or erase them. But its a good idea to let everything stay and help in the long run On your development machine you can do this : define('ENVIRONMENT' , 'development');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } And on the server you can do this : define('ENVIRONMENT' , 'production');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } 4. Propagate status messages via session Status messages are those messages that are generated after doing a task. <?phpif($wrong_username || $wrong_password){ $msg = 'Invalid username or password';}?><html><body><?php echo $msg; ?><form>...</form></body></html> Code like that is common. Using variables to show status messages has limitations. They cannot be send via redirects (unless you propagate them as GET variables to the next script , which is very silly). In large scripts there might be multiple messages etc. Best way is to use session to propagate them (even if on same page). For this there has to be a session_start on every page. function set_flash($msg){ $_SESSION['message'] = $msg;}function get_flash(){ $msg = $_SESSION['message']; unset($_SESSION['message']); return $msg;} and in your script : <?phpif($wrong_username || $wrong_password){ set_flash('Invalid username or password');}?><html><body>Status is : <?php echo get_flash(); ?><form>...</form></body></html> 5. Make your functions flexible function add_to_cart($item_id , $qty){ $_SESSION['cart'][$item_id] = $qty;}add_to_cart( 'IPHONE3' , 2 ); When adding a single item you use the above function. When adding multiple items , will you create another function ? NO. Just make the function flexible enough to take different kinds of parameters. Have a closer look : function add_to_cart($item_id , $qty){ if(!is_array($item_id)) { $_SESSION['cart'][$item_id] = $qty; } else { foreach($item_id as $i_id => $qty) { $_SESSION['cart'][$i_id] = $qty; } }}add_to_cart( 'IPHONE3' , 2 );add_to_cart( array('IPHONE3' => 2 , 'IPAD' => 5) ); So now the same function can accept different kinds of output. The above can be applied in lots of places to make your code more agile. 6. Omit the closing php tag if it is the last thing in a script I wonder why this tip is omitted from so many blog posts on php tips. <?phpecho "Hello";//Now dont close this tag This will save you lots of problem. Lets take an example : A class file super_class.php <?phpclass super_class{ function super_function() { //super code }}?>//super extra character after the closing tag Now index.php require_once('super_class.php');//echo an image or pdf , or set the cookies or session data And you will get Headers already send error. Why ? because the "super extra character" has been echoed , and all headers went along with that. Now you start debugging. You may have to waste many hours to find the super extra space. Hence make it a habit to omit the closing tag : <?phpclass super_class{ function super_function() { //super code }}//No closing tag Thats better. 7. Collect all output at one place , and output at one shot to the browser This is called output buffering. Lets say you have been echoing content from different functions like this : function print_header(){ echo "<div id='header'>Site Log and Login links</div>";}function print_footer(){ echo "<div id='footer'>Site was made by me</div>";}print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}print_footer(); Instead of doing like that , first collect all output in one place. You can either store it inside variables in the functions or use ob_start and ob_end_clean. So now it should look like function print_header(){ $o = "<div id='header'>Site Log and Login links</div>"; return $o;}function print_footer(){ $o = "<div id='footer'>Site was made by me</div>"; return $o;}echo print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}echo print_footer(); So why should you do output buffering : You can change the output just before sending it to browser if you need to. Think about doing some str_replaces , or may be preg_replaces or may be adding some extra html at the end like profiler/debugger output Its a bad idea to send output to browser and do php processing at the same time. Have you ever seen a website where there is a Fatal error in the sidebar or in a box in the middle of the screen. You know why that happens ? Because processing and output are being mixed. 8. Send correct mime types via header when outputting non-html content Lets echo some xml. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataecho $xml; Works fine. But it needs some improvement. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataheader("content-type: text/xml");echo $xml; Note that header line. That line tells the browser that the content is xml content. So the browser can handle it correctly. Many javascript libraries also rely on header information. Similarly for javascript , css , jpg image , png image : Javascript header("content-type: application/x-javascript");echo "var a = 10"; CSS header("content-type: text/css");echo "#div id { background:#000; }"; 9. Set the correct character encoding for a mysql connection Ever faced a problem that unicode/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation. $host = 'localhost';$username = 'root';$password = 'super_secret';//Attempt to connect to database$c = mysqli_connect($host , $username, $password); //Check connection validityif (!$c) { die ("Could not connect to the database host: <br />". mysqli_connect_error());} //Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){ die('mysqli_set_charset() failed');} Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application. Otherwise what will happen ? You will see lots of boxes and ???????? in non english text. 10. Use htmlentities with the correct characterset option Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc. $value = htmlentities($this->value , ENT_QUOTES , 'UTF-8'); Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual. 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php. Use apache mod_gzip/mod_deflate to compress content via the .htaccess file. 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php. $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= "'$image' ,";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;//Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,]; Be smart. use json_encode : $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;//Output is : var images = ["myself.png","friends.png","colleagues.png"] Isn't that neat ? 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of "debugging" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on. Make sure that your application is as intelligent as possible and reports the most important information in the shortest time. $contents = "All the content";$file_path = "/var/www/project/content.txt";file_put_contents($file_path , $contents); That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons : Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file. $contents = "All the content";$dir = '/var/www/project';$file_path = $dir . "/content.txt";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die("Directory $dir is not writable, or does not exist. Please check");} By doing this you get the accurate information that where is a file write failing and why 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are "accessible" outside. Otherwise for example the files may be created by "php" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on. // Read and write for owner, read for everybody elsechmod("/somedir/somefile", 0644);// Everything for owner, read and execute for otherschmod("/somedir/somefile", 0755); 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ //Save the things} The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this : if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ //Save the things} Now you are free from the value the submit button 16. Use static variables in function where they always have same value //Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} Instead use static variables as : //Delay for some timefunction delay(){ static $sync_delay = null; if($sync_delay == null) { $sync_delay = get_option('sync_delay'); } echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} 17. Don't use the $_SESSION variable directly Some simple examples are : $_SESSION['username'] = $username;$username = $_SESSION['username']; But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain. Hence use application specific keys with wrapper functions : define('APP_ID' , 'abc_corp_ecommerce');//Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}//Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;} 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like : function utility_a(){ //This function does a utility thing like string processing}function utility_b(){ //This function does nother utility thing like database processing}function utility_c(){ //This function is ...} And you use the function throughout your application freely. You may want to wrap them into a class as static functions : class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}//and call them as $a = Utility::utility_a();$b = Utility::utility_b(); One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else. 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++; Its absolutely a WASTE. Write if($a == true){ $a_count++;} Dont try to make your code shorter by eating up syntax. Rather make your logic shorter. Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this : foreach($arr as $c => $v){ $arr[$c] = trim($v);} But it can more cleaner with array_map : $arr = array_map('trim' , $arr); This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more. 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters. The php filter extension provides simple way to validate or check values as being a valid 'something'. 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate']; Its a good habit. 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded : $db_records_in_array_format; //This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; //2MB moresome_function($cc); //Another 2MB ? The above thing is common when importing a csv file or exporting table to a csv file Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays. Consider passing them by reference , or storing them in a class variable : $a = get_large_array();pass_to_function(&$a); by doing this the same variable (and not its copy) will be available to the function. Check documentation class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { //process $this->a }} unset them as soon as possible , so that memory is freed and rest of the script can relax. Here is a simple demonstration of how assign by reference can save memory in some cases <?phpini_set('display_errors' , true);error_reporting(E_ALL);$a = array();for($i = 0; $i < 100000 ; $i++){ $a[$i] = 'A'.$i;}echo 'Memory usage in MB : '. memory_get_usage() / 1000000 . '<br />';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() / 1000000 . '<br />';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() / 1000000 . '<br />';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() / 1000000 . '<br />'; The output on a typical php 5.4 machine is : Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more. 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this : function add_to_cart(){ $db = new Database(); $db->query("INSERT INTO cart .....");}function empty_cart(){ $db = new Database(); $db->query("DELETE FROM cart .....");} Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory. Use the singleton pattern for special cases like database connection. 26. Avoid direct SQL query , abstract it $query = "INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')";$db->query($query); //call to mysqli_query() The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like: All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries. A very simple example of an activerecord insert function can be like this : function insert_record($table_name , $data){ foreach($data as $key => $value) { //mysqli_real_escape_string $data[$key] = $db->mres($value); } $fields = implode(',' , array_keys($data)); $values = "'" . implode("','" , array_values($data)) . "'"; //Final query $query = "INSERT INTO {$table}($fields) VALUES($values)"; return $db->query($query);}//data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);//perform the INSERT queryinsert_record('users' , $data); The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse). This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise. 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again. Benefits : Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue. Storing session in database makes many other things easier like: Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example : <head> <base href="http://www.domain.com/store/"></head><body> <img src="/static/imghw/default1.png" data-src="happy.jpg" class="lazy" / alt="40+ Useful Php tips for beginners ? Part 1" ></body></html> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories. Lets take an example www.domain.com/store/home.php www.domain.com/store/products/ipad.php In home.php the following can be written : <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> But in ipad.php the links have to be like this : <a href="../home.php">Home</a><a href="ipad.php">Ipad</a> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag. <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products/ipad.php 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing. ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT); On production , the display should be disabled. ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark. After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set. ini_set('log_errors' , '1');ini_set('error_log' , '/path/to/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); Note : 1. The path '/path/to/errors.txt' should be writable by the web server for errors to be logged there. 2. A separate error file is specified , otherwise all logs would go inside the apache/web server error log and get mixed up with other apache errors. 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver). 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like /var/log dont have to searched. 5. Dont set error_reporting to 0. It will not log anything then. Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file. Set 'display_errors=On' in php.ini on development machine On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page. Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work. Set 'display_errors=Off' in php.ini on production machine Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away. 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results. On a 64 bit machine you can see such output. $ php -aInteractive shellphp > echo strtotime("0000-00-00 00:00:00");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600 But on a 32 bit machine all of them would give bool(false). Check here for more. What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines. 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this : set_time_limit(30);//Rest of the code It may not always work. Any execution that happens outside the script via system calls/os functions like socket operations, database operations etc. will not be under control of set_time_limit. So if a database operation takes lot of time or "hangs" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time. 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it. A better solution : /** Method to execute a command in the terminal Uses : 1. system 2. passthru 3. exec 4. shell_exec*/function terminal($command){ //system if(function_exists('system')) { ob_start(); system($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //passthru else if(function_exists('passthru')) { ob_start(); passthru($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //exec else if(function_exists('exec')) { exec($command , $output , $return_var); $output = implode("\n" , $output); } //shell_exec else if(function_exists('shell_exec')) { $output = shell_exec($command) ; } else { $output = 'Command execution not possible on this system'; $return_var = 1; } return array('output' => $output , 'status' => $return_var);}terminal('ls'); The above function will execute the shell command using whichever function is available , keeping your code consistent. 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user. 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise. Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind. 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily. Few popular libraries are : mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference. 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code. Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community. They contain user feedback, expert advice and useful code snippets. So check them out. 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!! 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc. The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more 1. Codeigniter 2. WordPress 3. Joomla CMS 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment. Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster. Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free. 本站聲明 本文內(nèi)容由網(wǎng)友自發(fā)貢獻,版權(quán)歸原作者所有,本站不承擔相應(yīng)法律責任。如您發(fā)現(xiàn)有涉嫌抄襲侵權(quán)的內(nèi)容,請聯(lián)系admin@php.cn 熱AI工具 Undress AI Tool 免費脫衣服圖片 Undresser.AI Undress 人工智能驅(qū)動的應(yīng)用程序,用于創(chuàng)建逼真的裸體照片 AI Clothes Remover 用于從照片中去除衣服的在線人工智能工具。 Clothoff.io AI脫衣機 Video Face Swap 使用我們完全免費的人工智能換臉工具輕松在任何視頻中換臉! 顯示更多 熱門文章 指南:恒星刀片保存文件位置/保存文件丟失/不保存 4 周前 By DDD Oguri Cap Build Guide |漂亮的德比志 2 周前 By Jack chen Agnes Tachyon Build Guide |漂亮的德比志 1 周前 By Jack chen 沙丘:覺醒 - 高級行星學家Quest演練 4 周前 By Jack chen 約會一切:德克和哈珀關(guān)系指南 4 周前 By Jack chen 顯示更多 熱工具 記事本++7.3.1 好用且免費的代碼編輯器 SublimeText3漢化版 中文版,非常好用 禪工作室 13.0.1 功能強大的PHP集成開發(fā)環(huán)境 Dreamweaver CS6 視覺化網(wǎng)頁開發(fā)工具 SublimeText3 Mac版 神級代碼編輯軟件(SublimeText3) 顯示更多 熱門話題 gmail郵箱登陸入口在哪里 8638 17 Java教程 1783 16 CakePHP 教程 1728 56 Laravel 教程 1578 28 PHP教程 1442 31 顯示更多 Related knowledge 如何在PHP中實施身份驗證和授權(quán)? Jun 20, 2025 am 01:03 AM tosecurelyhandleauthenticationandationallizationInphp,lofterTheSesteps:1.AlwaysHashPasswordSwithPassword_hash()andverifyusingspasspassword_verify(),usepreparedStatatementStopreventsqlineptions,andStoreSeruserDatain usseruserDatain $ _sessiveferterlogin.2.implementrole-2.imaccessccsccccccccccccccccccccccccc. 如何在PHP中安全地處理文件上傳? Jun 19, 2025 am 01:05 AM 要安全處理PHP中的文件上傳,核心在于驗證文件類型、重命名文件并限制權(quán)限。1.使用finfo_file()檢查真實MIME類型,僅允許特定類型如image/jpeg;2.用uniqid()生成隨機文件名,存儲至非Web根目錄;3.通過php.ini和HTML表單限制文件大小,設(shè)置目錄權(quán)限為0755;4.使用ClamAV掃描惡意軟件,增強安全性。這些步驟有效防止安全漏洞,確保文件上傳過程安全可靠。 PHP中==(松散比較)和===(嚴格的比較)之間有什么區(qū)別? Jun 19, 2025 am 01:07 AM 在PHP中,==與===的主要區(qū)別在于類型檢查的嚴格程度。==在比較前會進行類型轉(zhuǎn)換,例如5=="5"返回true,而===要求值和類型都相同才會返回true,例如5==="5"返回false。使用場景上,===更安全應(yīng)優(yōu)先使用,==僅在需要類型轉(zhuǎn)換時使用。 如何在PHP( - , *, /,%)中執(zhí)行算術(shù)操作? Jun 19, 2025 pm 05:13 PM PHP中使用基本數(shù)學運算的方法如下:1.加法用 號,支持整數(shù)和浮點數(shù),也可用于變量,字符串數(shù)字會自動轉(zhuǎn)換但不推薦依賴;2.減法用-號,變量同理,類型轉(zhuǎn)換同樣適用;3.乘法用*號,適用于數(shù)字及類似字符串;4.除法用/號,需避免除以零,并注意結(jié)果可能是浮點數(shù);5.取模用%號,可用于判斷奇偶數(shù),處理負數(shù)時余數(shù)符號與被除數(shù)一致。正確使用這些運算符的關(guān)鍵在于確保數(shù)據(jù)類型清晰并處理好邊界情況。 如何與PHP的NOSQL數(shù)據(jù)庫(例如MongoDB,Redis)進行交互? Jun 19, 2025 am 01:07 AM 是的,PHP可以通過特定擴展或庫與MongoDB和Redis等NoSQL數(shù)據(jù)庫交互。首先,使用MongoDBPHP驅(qū)動(通過PECL或Composer安裝)創(chuàng)建客戶端實例并操作數(shù)據(jù)庫及集合,支持插入、查詢、聚合等操作;其次,使用Predis庫或phpredis擴展連接Redis,執(zhí)行鍵值設(shè)置與獲取,推薦phpredis用于高性能場景,Predis則便于快速部署;兩者均適用于生產(chǎn)環(huán)境且文檔完善。 我如何了解最新的PHP開發(fā)和最佳實踐? Jun 23, 2025 am 12:56 AM TostaycurrentwithPHPdevelopmentsandbestpractices,followkeynewssourceslikePHP.netandPHPWeekly,engagewithcommunitiesonforumsandconferences,keeptoolingupdatedandgraduallyadoptnewfeatures,andreadorcontributetoopensourceprojects.First,followreliablesource 什么是PHP,為什么它用于Web開發(fā)? Jun 23, 2025 am 12:55 AM PHPbecamepopularforwebdevelopmentduetoitseaseoflearning,seamlessintegrationwithHTML,widespreadhostingsupport,andalargeecosystemincludingframeworkslikeLaravelandCMSplatformslikeWordPress.Itexcelsinhandlingformsubmissions,managingusersessions,interacti 如何設(shè)置PHP時區(qū)? Jun 25, 2025 am 01:00 AM tosetTherightTimeZoneInphp,restate_default_timezone_set()functionAtthestArtofyourscriptWithavalIdidentIdentifiersuchas'america/new_york'.1.usedate_default_default_timezone_set_set() See all articles
Some simple examples are :<\/p>
$_SESSION['username'] = $username;$username = $_SESSION['username'];<\/pre> But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain.<\/p> Hence use application specific keys with wrapper functions :<\/p> define('APP_ID' , 'abc_corp_ecommerce');\/\/Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}\/\/Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;}<\/pre> 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like :<\/p> function utility_a(){ \/\/This function does a utility thing like string processing}function utility_b(){ \/\/This function does nother utility thing like database processing}function utility_c(){ \/\/This function is ...}<\/pre> And you use the function throughout your application freely. You may want to wrap them into a class as static functions :<\/p> class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}\/\/and call them as $a = Utility::utility_a();$b = Utility::utility_b();<\/pre> One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else.<\/p> 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++;<\/pre> Its absolutely a WASTE.<\/p> Write<\/p> if($a == true){ $a_count++;}<\/pre> Dont try to make your code shorter by eating up syntax. Rather make your logic shorter.<\/p> Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this :<\/p> foreach($arr as $c => $v){\t$arr[$c] = trim($v);}<\/pre> But it can more cleaner with array_map :<\/p> $arr = array_map('trim' , $arr);<\/pre> This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more.<\/p> 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters.<\/p> The php filter extension provides simple way to validate or check values as being a valid 'something'.<\/p> 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate'];<\/pre> Its a good habit.<\/p> 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose<\/p> 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded :<\/p> $db_records_in_array_format; \/\/This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; \/\/2MB moresome_function($cc); \/\/Another 2MB ?<\/pre> The above thing is common when importing a csv file or exporting table to a csv file<\/p> Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays.<\/p> Consider passing them by reference , or storing them in a class variable :<\/p> $a = get_large_array();pass_to_function(&$a);<\/pre> by doing this the same variable (and not its copy) will be available to the function. Check documentation<\/p> class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { \/\/process $this->a }}<\/pre> unset them as soon as possible , so that memory is freed and rest of the script can relax.<\/p> Here is a simple demonstration of how assign by reference can save memory in some cases<\/p> ';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() \/ 1000000 . '';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() \/ 1000000 . '';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() \/ 1000000 . '';<\/pre> The output on a typical php 5.4 machine is :<\/p> Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 <\/p> So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more.<\/p> 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this :<\/p> function add_to_cart(){ $db = new Database(); $db->query(\"INSERT INTO cart .....\");}function empty_cart(){ $db = new Database(); $db->query(\"DELETE FROM cart .....\");}<\/pre> Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory.<\/p> Use the singleton pattern for special cases like database connection.<\/p> 26. Avoid direct SQL query , abstract it $query = \"INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')\";$db->query($query); \/\/call to mysqli_query()<\/pre> The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like:<\/p> All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord<\/p> It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries.<\/p> A very simple example of an activerecord insert function can be like this :<\/p> function insert_record($table_name , $data){ foreach($data as $key => $value) {\t\/\/mysqli_real_escape_string $data[$key] = $db->mres($value); }\t\t $fields = implode(',' , array_keys($data)); $values = \"'\" . implode(\"','\" , array_values($data)) . \"'\"; \/\/Final query\t $query = \"INSERT INTO {$table}($fields) VALUES($values)\";\t\t return $db->query($query);}\/\/data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);\/\/perform the INSERT queryinsert_record('users' , $data);<\/pre> The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse).<\/p> This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise.<\/p> 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again.<\/p> Benefits :<\/p> Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue.<\/p> Storing session in database makes many other things easier like:<\/p> Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines\/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example :<\/p> <\/head> <\/body><\/html><\/pre> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories.<\/p> Lets take an example<\/p> www.domain.com\/store\/home.php www.domain.com\/store\/products\/ipad.php<\/p> In home.php the following can be written :<\/p> Home<\/a>Ipad<\/a><\/pre> But in ipad.php the links have to be like this :<\/p> Home<\/a>Ipad<\/a><\/pre> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag.<\/p> <\/head>Home<\/a>Ipad<\/a><\/body><\/html><\/pre> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products\/ipad.php<\/p> 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing.<\/p> ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT);<\/pre> On production , the display should be disabled.<\/p> ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark.<\/p> After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set.<\/p> ini_set('log_errors' , '1');ini_set('error_log' , '\/path\/to\/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> Note :<\/p> 1. The path '\/path\/to\/errors.txt' should be writable by the web server for errors to be logged there.<\/p> 2. A separate error file is specified , otherwise all logs would go inside the apache\/web server error log and get mixed up with other apache errors.<\/p> 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver).<\/p> 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like \/var\/log dont have to searched.<\/p> 5. Dont set error_reporting to 0. It will not log anything then.<\/p> Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file.<\/p> Set 'display_errors=On' in php.ini on development machine<\/p> On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page.<\/p> Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work.<\/p> Set 'display_errors=Off' in php.ini on production machine<\/p> Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away.<\/p> 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results.<\/p> On a 64 bit machine you can see such output.<\/p> $ php -aInteractive shellphp > echo strtotime(\"0000-00-00 00:00:00\");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600<\/pre> But on a 32 bit machine all of them would give bool(false). Check here for more.<\/p> What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines.<\/p> 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this :<\/p> set_time_limit(30);\/\/Rest of the code<\/pre> It may not always work. Any execution that happens outside the script via system calls\/os functions like socket operations, database operations etc. will not be under control of set_time_limit.<\/p> So if a database operation takes lot of time or \"hangs\" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time.<\/p> 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it.<\/p> A better solution :<\/p> \/**\tMethod to execute a command in the terminal\tUses :\t1. system\t2. passthru\t3. exec\t4. shell_exec*\/function terminal($command){\t\/\/system\tif(function_exists('system'))\t{\t\tob_start();\t\tsystem($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/passthru\telse if(function_exists('passthru'))\t{\t\tob_start();\t\tpassthru($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/exec\telse if(function_exists('exec'))\t{\t\texec($command , $output , $return_var);\t\t$output = implode(\"\\n\" , $output);\t}\t\/\/shell_exec\telse if(function_exists('shell_exec'))\t{\t\t$output = shell_exec($command) ;\t}\telse\t{\t\t$output = 'Command execution not possible on this system';\t\t$return_var = 1;\t}\treturn array('output' => $output , 'status' => $return_var);}terminal('ls');<\/pre> The above function will execute the shell command using whichever function is available , keeping your code consistent.<\/p> 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user.<\/p> 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise.<\/p> Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind.<\/p> 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily.<\/p> Few popular libraries are :<\/p> mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference.<\/p> 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code.<\/p> Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community.<\/p> They contain user feedback, expert advice and useful code snippets. So check them out.<\/p> 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!!<\/p> 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc.<\/p> The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more<\/p> 1. Codeigniter 2. WordPress 3. Joomla CMS<\/p> 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment.<\/p> Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster.<\/p> Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free.<\/p> "} 社區(qū) 文章 合集 問答 學習 課程 編程詞典 工具庫 開發(fā)工具 網(wǎng)站源碼 PHP 庫 JS特效 網(wǎng)站素材 擴展插件 AI工具 休閑 游戲下載 游戲教程 簡體中文 簡體中文 English 繁體中文 日本語 ??? Melayu Fran?ais Deutsch Login singup 首頁 后端開發(fā) php教程 40+ Useful Php tips for beginners ? Part 1 40+ Useful Php tips for beginners ? Part 1 WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB Jun 23, 2016 pm 02:37 PM PHP學習指南 http://www.binarytides.com/category/php-2/tutorial/ In this series we are going to look into some useful tips and techniques that can be used to improve and optimise your php code. Note that these php tips are meant for beginners and not those who are already using mvc frameworks etc. The Techniques 1. Do not use relative paths , instead define a ROOT path Its quite common to see such lines : require_once('http://www.cnblogs.com/lib/some_class.php'); This approach has many drawbacks : It first searches for directories specified in the include paths of php , then looks from the current directory. So many directories are checked. When a script is included by another script in a different directory , its base directory changes to that of the including script. Another issue , is that when a script is being run from cron , it may not have its parent directory as the working directory. So its a good idea to have absolute paths : define('ROOT' , '/var/www/project/');require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code Now this is an absolute path and will always stay constant. But we can improve this further. The directory /var/www/project can change , so do we change it everytime ? No instead we make it portable using magic constants like __FILE__ . Take a closer look : //suppose your script is /var/www/project/index.php//Then __FILE__ will always have that full path.define('ROOT' , pathinfo(__FILE__, PATHINFO_DIRNAME));require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code So now even if you shift your project to a different directory , like moving it to an online server , the same code will run without any changes. 2. Dont use require , include , require_once or include_once Your script could be including various files on top , like class libraries , files for utility and helper functions etc like this : require_once('lib/Database.php');require_once('lib/Mail.php');require_once('helpers/utitlity_functions.php'); This is rather primitive. The code needs to be more flexible. Write up helper functions to include things more easily. Lets take an example : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); require_once( $path ); }load_class('Database');load_class('Mail'); See any difference ? You must. It does not need any more explanation. You can improve this further if you wish to like this : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); if(file_exists($path)) { require_once( $path ); }} There are a lot of things that can be done with this : Search multiple directories for the same class file. Change the directory containing class files easily , without breaking the code anywhere. Use similar functions for loading files that contain helper functions , html content etc. 3. Maintain debugging environment in your application During development we echo database queries , dump variables which are creating problems , and then once the problem is solved , we comment them or erase them. But its a good idea to let everything stay and help in the long run On your development machine you can do this : define('ENVIRONMENT' , 'development');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } And on the server you can do this : define('ENVIRONMENT' , 'production');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } 4. Propagate status messages via session Status messages are those messages that are generated after doing a task. <?phpif($wrong_username || $wrong_password){ $msg = 'Invalid username or password';}?><html><body><?php echo $msg; ?><form>...</form></body></html> Code like that is common. Using variables to show status messages has limitations. They cannot be send via redirects (unless you propagate them as GET variables to the next script , which is very silly). In large scripts there might be multiple messages etc. Best way is to use session to propagate them (even if on same page). For this there has to be a session_start on every page. function set_flash($msg){ $_SESSION['message'] = $msg;}function get_flash(){ $msg = $_SESSION['message']; unset($_SESSION['message']); return $msg;} and in your script : <?phpif($wrong_username || $wrong_password){ set_flash('Invalid username or password');}?><html><body>Status is : <?php echo get_flash(); ?><form>...</form></body></html> 5. Make your functions flexible function add_to_cart($item_id , $qty){ $_SESSION['cart'][$item_id] = $qty;}add_to_cart( 'IPHONE3' , 2 ); When adding a single item you use the above function. When adding multiple items , will you create another function ? NO. Just make the function flexible enough to take different kinds of parameters. Have a closer look : function add_to_cart($item_id , $qty){ if(!is_array($item_id)) { $_SESSION['cart'][$item_id] = $qty; } else { foreach($item_id as $i_id => $qty) { $_SESSION['cart'][$i_id] = $qty; } }}add_to_cart( 'IPHONE3' , 2 );add_to_cart( array('IPHONE3' => 2 , 'IPAD' => 5) ); So now the same function can accept different kinds of output. The above can be applied in lots of places to make your code more agile. 6. Omit the closing php tag if it is the last thing in a script I wonder why this tip is omitted from so many blog posts on php tips. <?phpecho "Hello";//Now dont close this tag This will save you lots of problem. Lets take an example : A class file super_class.php <?phpclass super_class{ function super_function() { //super code }}?>//super extra character after the closing tag Now index.php require_once('super_class.php');//echo an image or pdf , or set the cookies or session data And you will get Headers already send error. Why ? because the "super extra character" has been echoed , and all headers went along with that. Now you start debugging. You may have to waste many hours to find the super extra space. Hence make it a habit to omit the closing tag : <?phpclass super_class{ function super_function() { //super code }}//No closing tag Thats better. 7. Collect all output at one place , and output at one shot to the browser This is called output buffering. Lets say you have been echoing content from different functions like this : function print_header(){ echo "<div id='header'>Site Log and Login links</div>";}function print_footer(){ echo "<div id='footer'>Site was made by me</div>";}print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}print_footer(); Instead of doing like that , first collect all output in one place. You can either store it inside variables in the functions or use ob_start and ob_end_clean. So now it should look like function print_header(){ $o = "<div id='header'>Site Log and Login links</div>"; return $o;}function print_footer(){ $o = "<div id='footer'>Site was made by me</div>"; return $o;}echo print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}echo print_footer(); So why should you do output buffering : You can change the output just before sending it to browser if you need to. Think about doing some str_replaces , or may be preg_replaces or may be adding some extra html at the end like profiler/debugger output Its a bad idea to send output to browser and do php processing at the same time. Have you ever seen a website where there is a Fatal error in the sidebar or in a box in the middle of the screen. You know why that happens ? Because processing and output are being mixed. 8. Send correct mime types via header when outputting non-html content Lets echo some xml. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataecho $xml; Works fine. But it needs some improvement. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataheader("content-type: text/xml");echo $xml; Note that header line. That line tells the browser that the content is xml content. So the browser can handle it correctly. Many javascript libraries also rely on header information. Similarly for javascript , css , jpg image , png image : Javascript header("content-type: application/x-javascript");echo "var a = 10"; CSS header("content-type: text/css");echo "#div id { background:#000; }"; 9. Set the correct character encoding for a mysql connection Ever faced a problem that unicode/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation. $host = 'localhost';$username = 'root';$password = 'super_secret';//Attempt to connect to database$c = mysqli_connect($host , $username, $password); //Check connection validityif (!$c) { die ("Could not connect to the database host: <br />". mysqli_connect_error());} //Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){ die('mysqli_set_charset() failed');} Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application. Otherwise what will happen ? You will see lots of boxes and ???????? in non english text. 10. Use htmlentities with the correct characterset option Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc. $value = htmlentities($this->value , ENT_QUOTES , 'UTF-8'); Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual. 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php. Use apache mod_gzip/mod_deflate to compress content via the .htaccess file. 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php. $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= "'$image' ,";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;//Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,]; Be smart. use json_encode : $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;//Output is : var images = ["myself.png","friends.png","colleagues.png"] Isn't that neat ? 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of "debugging" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on. Make sure that your application is as intelligent as possible and reports the most important information in the shortest time. $contents = "All the content";$file_path = "/var/www/project/content.txt";file_put_contents($file_path , $contents); That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons : Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file. $contents = "All the content";$dir = '/var/www/project';$file_path = $dir . "/content.txt";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die("Directory $dir is not writable, or does not exist. Please check");} By doing this you get the accurate information that where is a file write failing and why 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are "accessible" outside. Otherwise for example the files may be created by "php" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on. // Read and write for owner, read for everybody elsechmod("/somedir/somefile", 0644);// Everything for owner, read and execute for otherschmod("/somedir/somefile", 0755); 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ //Save the things} The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this : if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ //Save the things} Now you are free from the value the submit button 16. Use static variables in function where they always have same value //Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} Instead use static variables as : //Delay for some timefunction delay(){ static $sync_delay = null; if($sync_delay == null) { $sync_delay = get_option('sync_delay'); } echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} 17. Don't use the $_SESSION variable directly Some simple examples are : $_SESSION['username'] = $username;$username = $_SESSION['username']; But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain. Hence use application specific keys with wrapper functions : define('APP_ID' , 'abc_corp_ecommerce');//Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}//Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;} 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like : function utility_a(){ //This function does a utility thing like string processing}function utility_b(){ //This function does nother utility thing like database processing}function utility_c(){ //This function is ...} And you use the function throughout your application freely. You may want to wrap them into a class as static functions : class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}//and call them as $a = Utility::utility_a();$b = Utility::utility_b(); One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else. 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++; Its absolutely a WASTE. Write if($a == true){ $a_count++;} Dont try to make your code shorter by eating up syntax. Rather make your logic shorter. Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this : foreach($arr as $c => $v){ $arr[$c] = trim($v);} But it can more cleaner with array_map : $arr = array_map('trim' , $arr); This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more. 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters. The php filter extension provides simple way to validate or check values as being a valid 'something'. 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate']; Its a good habit. 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded : $db_records_in_array_format; //This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; //2MB moresome_function($cc); //Another 2MB ? The above thing is common when importing a csv file or exporting table to a csv file Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays. Consider passing them by reference , or storing them in a class variable : $a = get_large_array();pass_to_function(&$a); by doing this the same variable (and not its copy) will be available to the function. Check documentation class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { //process $this->a }} unset them as soon as possible , so that memory is freed and rest of the script can relax. Here is a simple demonstration of how assign by reference can save memory in some cases <?phpini_set('display_errors' , true);error_reporting(E_ALL);$a = array();for($i = 0; $i < 100000 ; $i++){ $a[$i] = 'A'.$i;}echo 'Memory usage in MB : '. memory_get_usage() / 1000000 . '<br />';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() / 1000000 . '<br />';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() / 1000000 . '<br />';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() / 1000000 . '<br />'; The output on a typical php 5.4 machine is : Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more. 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this : function add_to_cart(){ $db = new Database(); $db->query("INSERT INTO cart .....");}function empty_cart(){ $db = new Database(); $db->query("DELETE FROM cart .....");} Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory. Use the singleton pattern for special cases like database connection. 26. Avoid direct SQL query , abstract it $query = "INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')";$db->query($query); //call to mysqli_query() The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like: All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries. A very simple example of an activerecord insert function can be like this : function insert_record($table_name , $data){ foreach($data as $key => $value) { //mysqli_real_escape_string $data[$key] = $db->mres($value); } $fields = implode(',' , array_keys($data)); $values = "'" . implode("','" , array_values($data)) . "'"; //Final query $query = "INSERT INTO {$table}($fields) VALUES($values)"; return $db->query($query);}//data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);//perform the INSERT queryinsert_record('users' , $data); The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse). This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise. 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again. Benefits : Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue. Storing session in database makes many other things easier like: Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example : <head> <base href="http://www.domain.com/store/"></head><body> <img src="/static/imghw/default1.png" data-src="happy.jpg" class="lazy" / alt="40+ Useful Php tips for beginners ? Part 1" ></body></html> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories. Lets take an example www.domain.com/store/home.php www.domain.com/store/products/ipad.php In home.php the following can be written : <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> But in ipad.php the links have to be like this : <a href="../home.php">Home</a><a href="ipad.php">Ipad</a> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag. <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products/ipad.php 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing. ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT); On production , the display should be disabled. ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark. After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set. ini_set('log_errors' , '1');ini_set('error_log' , '/path/to/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); Note : 1. The path '/path/to/errors.txt' should be writable by the web server for errors to be logged there. 2. A separate error file is specified , otherwise all logs would go inside the apache/web server error log and get mixed up with other apache errors. 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver). 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like /var/log dont have to searched. 5. Dont set error_reporting to 0. It will not log anything then. Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file. Set 'display_errors=On' in php.ini on development machine On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page. Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work. Set 'display_errors=Off' in php.ini on production machine Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away. 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results. On a 64 bit machine you can see such output. $ php -aInteractive shellphp > echo strtotime("0000-00-00 00:00:00");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600 But on a 32 bit machine all of them would give bool(false). Check here for more. What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines. 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this : set_time_limit(30);//Rest of the code It may not always work. Any execution that happens outside the script via system calls/os functions like socket operations, database operations etc. will not be under control of set_time_limit. So if a database operation takes lot of time or "hangs" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time. 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it. A better solution : /** Method to execute a command in the terminal Uses : 1. system 2. passthru 3. exec 4. shell_exec*/function terminal($command){ //system if(function_exists('system')) { ob_start(); system($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //passthru else if(function_exists('passthru')) { ob_start(); passthru($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //exec else if(function_exists('exec')) { exec($command , $output , $return_var); $output = implode("\n" , $output); } //shell_exec else if(function_exists('shell_exec')) { $output = shell_exec($command) ; } else { $output = 'Command execution not possible on this system'; $return_var = 1; } return array('output' => $output , 'status' => $return_var);}terminal('ls'); The above function will execute the shell command using whichever function is available , keeping your code consistent. 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user. 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise. Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind. 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily. Few popular libraries are : mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference. 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code. Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community. They contain user feedback, expert advice and useful code snippets. So check them out. 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!! 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc. The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more 1. Codeigniter 2. WordPress 3. Joomla CMS 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment. Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster. Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free. 本站聲明 本文內(nèi)容由網(wǎng)友自發(fā)貢獻,版權(quán)歸原作者所有,本站不承擔相應(yīng)法律責任。如您發(fā)現(xiàn)有涉嫌抄襲侵權(quán)的內(nèi)容,請聯(lián)系admin@php.cn 熱AI工具 Undress AI Tool 免費脫衣服圖片 Undresser.AI Undress 人工智能驅(qū)動的應(yīng)用程序,用于創(chuàng)建逼真的裸體照片 AI Clothes Remover 用于從照片中去除衣服的在線人工智能工具。 Clothoff.io AI脫衣機 Video Face Swap 使用我們完全免費的人工智能換臉工具輕松在任何視頻中換臉! 顯示更多 熱門文章 指南:恒星刀片保存文件位置/保存文件丟失/不保存 4 周前 By DDD Oguri Cap Build Guide |漂亮的德比志 2 周前 By Jack chen Agnes Tachyon Build Guide |漂亮的德比志 1 周前 By Jack chen 沙丘:覺醒 - 高級行星學家Quest演練 4 周前 By Jack chen 約會一切:德克和哈珀關(guān)系指南 4 周前 By Jack chen 顯示更多 熱工具 記事本++7.3.1 好用且免費的代碼編輯器 SublimeText3漢化版 中文版,非常好用 禪工作室 13.0.1 功能強大的PHP集成開發(fā)環(huán)境 Dreamweaver CS6 視覺化網(wǎng)頁開發(fā)工具 SublimeText3 Mac版 神級代碼編輯軟件(SublimeText3) 顯示更多 熱門話題 gmail郵箱登陸入口在哪里 8638 17 Java教程 1783 16 CakePHP 教程 1728 56 Laravel 教程 1578 28 PHP教程 1442 31 顯示更多 Related knowledge 如何在PHP中實施身份驗證和授權(quán)? Jun 20, 2025 am 01:03 AM tosecurelyhandleauthenticationandationallizationInphp,lofterTheSesteps:1.AlwaysHashPasswordSwithPassword_hash()andverifyusingspasspassword_verify(),usepreparedStatatementStopreventsqlineptions,andStoreSeruserDatain usseruserDatain $ _sessiveferterlogin.2.implementrole-2.imaccessccsccccccccccccccccccccccccc. 如何在PHP中安全地處理文件上傳? Jun 19, 2025 am 01:05 AM 要安全處理PHP中的文件上傳,核心在于驗證文件類型、重命名文件并限制權(quán)限。1.使用finfo_file()檢查真實MIME類型,僅允許特定類型如image/jpeg;2.用uniqid()生成隨機文件名,存儲至非Web根目錄;3.通過php.ini和HTML表單限制文件大小,設(shè)置目錄權(quán)限為0755;4.使用ClamAV掃描惡意軟件,增強安全性。這些步驟有效防止安全漏洞,確保文件上傳過程安全可靠。 PHP中==(松散比較)和===(嚴格的比較)之間有什么區(qū)別? Jun 19, 2025 am 01:07 AM 在PHP中,==與===的主要區(qū)別在于類型檢查的嚴格程度。==在比較前會進行類型轉(zhuǎn)換,例如5=="5"返回true,而===要求值和類型都相同才會返回true,例如5==="5"返回false。使用場景上,===更安全應(yīng)優(yōu)先使用,==僅在需要類型轉(zhuǎn)換時使用。 如何在PHP( - , *, /,%)中執(zhí)行算術(shù)操作? Jun 19, 2025 pm 05:13 PM PHP中使用基本數(shù)學運算的方法如下:1.加法用 號,支持整數(shù)和浮點數(shù),也可用于變量,字符串數(shù)字會自動轉(zhuǎn)換但不推薦依賴;2.減法用-號,變量同理,類型轉(zhuǎn)換同樣適用;3.乘法用*號,適用于數(shù)字及類似字符串;4.除法用/號,需避免除以零,并注意結(jié)果可能是浮點數(shù);5.取模用%號,可用于判斷奇偶數(shù),處理負數(shù)時余數(shù)符號與被除數(shù)一致。正確使用這些運算符的關(guān)鍵在于確保數(shù)據(jù)類型清晰并處理好邊界情況。 如何與PHP的NOSQL數(shù)據(jù)庫(例如MongoDB,Redis)進行交互? Jun 19, 2025 am 01:07 AM 是的,PHP可以通過特定擴展或庫與MongoDB和Redis等NoSQL數(shù)據(jù)庫交互。首先,使用MongoDBPHP驅(qū)動(通過PECL或Composer安裝)創(chuàng)建客戶端實例并操作數(shù)據(jù)庫及集合,支持插入、查詢、聚合等操作;其次,使用Predis庫或phpredis擴展連接Redis,執(zhí)行鍵值設(shè)置與獲取,推薦phpredis用于高性能場景,Predis則便于快速部署;兩者均適用于生產(chǎn)環(huán)境且文檔完善。 我如何了解最新的PHP開發(fā)和最佳實踐? Jun 23, 2025 am 12:56 AM TostaycurrentwithPHPdevelopmentsandbestpractices,followkeynewssourceslikePHP.netandPHPWeekly,engagewithcommunitiesonforumsandconferences,keeptoolingupdatedandgraduallyadoptnewfeatures,andreadorcontributetoopensourceprojects.First,followreliablesource 什么是PHP,為什么它用于Web開發(fā)? Jun 23, 2025 am 12:55 AM PHPbecamepopularforwebdevelopmentduetoitseaseoflearning,seamlessintegrationwithHTML,widespreadhostingsupport,andalargeecosystemincludingframeworkslikeLaravelandCMSplatformslikeWordPress.Itexcelsinhandlingformsubmissions,managingusersessions,interacti 如何設(shè)置PHP時區(qū)? Jun 25, 2025 am 01:00 AM tosetTherightTimeZoneInphp,restate_default_timezone_set()functionAtthestArtofyourscriptWithavalIdidentIdentifiersuchas'america/new_york'.1.usedate_default_default_timezone_set_set() See all articles
But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain.<\/p>
Hence use application specific keys with wrapper functions :<\/p>
define('APP_ID' , 'abc_corp_ecommerce');\/\/Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}\/\/Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;}<\/pre> 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like :<\/p> function utility_a(){ \/\/This function does a utility thing like string processing}function utility_b(){ \/\/This function does nother utility thing like database processing}function utility_c(){ \/\/This function is ...}<\/pre> And you use the function throughout your application freely. You may want to wrap them into a class as static functions :<\/p> class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}\/\/and call them as $a = Utility::utility_a();$b = Utility::utility_b();<\/pre> One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else.<\/p> 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++;<\/pre> Its absolutely a WASTE.<\/p> Write<\/p> if($a == true){ $a_count++;}<\/pre> Dont try to make your code shorter by eating up syntax. Rather make your logic shorter.<\/p> Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this :<\/p> foreach($arr as $c => $v){\t$arr[$c] = trim($v);}<\/pre> But it can more cleaner with array_map :<\/p> $arr = array_map('trim' , $arr);<\/pre> This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more.<\/p> 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters.<\/p> The php filter extension provides simple way to validate or check values as being a valid 'something'.<\/p> 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate'];<\/pre> Its a good habit.<\/p> 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose<\/p> 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded :<\/p> $db_records_in_array_format; \/\/This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; \/\/2MB moresome_function($cc); \/\/Another 2MB ?<\/pre> The above thing is common when importing a csv file or exporting table to a csv file<\/p> Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays.<\/p> Consider passing them by reference , or storing them in a class variable :<\/p> $a = get_large_array();pass_to_function(&$a);<\/pre> by doing this the same variable (and not its copy) will be available to the function. Check documentation<\/p> class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { \/\/process $this->a }}<\/pre> unset them as soon as possible , so that memory is freed and rest of the script can relax.<\/p> Here is a simple demonstration of how assign by reference can save memory in some cases<\/p> ';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() \/ 1000000 . '';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() \/ 1000000 . '';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() \/ 1000000 . '';<\/pre> The output on a typical php 5.4 machine is :<\/p> Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 <\/p> So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more.<\/p> 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this :<\/p> function add_to_cart(){ $db = new Database(); $db->query(\"INSERT INTO cart .....\");}function empty_cart(){ $db = new Database(); $db->query(\"DELETE FROM cart .....\");}<\/pre> Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory.<\/p> Use the singleton pattern for special cases like database connection.<\/p> 26. Avoid direct SQL query , abstract it $query = \"INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')\";$db->query($query); \/\/call to mysqli_query()<\/pre> The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like:<\/p> All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord<\/p> It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries.<\/p> A very simple example of an activerecord insert function can be like this :<\/p> function insert_record($table_name , $data){ foreach($data as $key => $value) {\t\/\/mysqli_real_escape_string $data[$key] = $db->mres($value); }\t\t $fields = implode(',' , array_keys($data)); $values = \"'\" . implode(\"','\" , array_values($data)) . \"'\"; \/\/Final query\t $query = \"INSERT INTO {$table}($fields) VALUES($values)\";\t\t return $db->query($query);}\/\/data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);\/\/perform the INSERT queryinsert_record('users' , $data);<\/pre> The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse).<\/p> This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise.<\/p> 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again.<\/p> Benefits :<\/p> Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue.<\/p> Storing session in database makes many other things easier like:<\/p> Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines\/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example :<\/p> <\/head> <\/body><\/html><\/pre> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories.<\/p> Lets take an example<\/p> www.domain.com\/store\/home.php www.domain.com\/store\/products\/ipad.php<\/p> In home.php the following can be written :<\/p> Home<\/a>Ipad<\/a><\/pre> But in ipad.php the links have to be like this :<\/p> Home<\/a>Ipad<\/a><\/pre> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag.<\/p> <\/head>Home<\/a>Ipad<\/a><\/body><\/html><\/pre> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products\/ipad.php<\/p> 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing.<\/p> ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT);<\/pre> On production , the display should be disabled.<\/p> ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark.<\/p> After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set.<\/p> ini_set('log_errors' , '1');ini_set('error_log' , '\/path\/to\/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> Note :<\/p> 1. The path '\/path\/to\/errors.txt' should be writable by the web server for errors to be logged there.<\/p> 2. A separate error file is specified , otherwise all logs would go inside the apache\/web server error log and get mixed up with other apache errors.<\/p> 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver).<\/p> 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like \/var\/log dont have to searched.<\/p> 5. Dont set error_reporting to 0. It will not log anything then.<\/p> Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file.<\/p> Set 'display_errors=On' in php.ini on development machine<\/p> On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page.<\/p> Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work.<\/p> Set 'display_errors=Off' in php.ini on production machine<\/p> Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away.<\/p> 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results.<\/p> On a 64 bit machine you can see such output.<\/p> $ php -aInteractive shellphp > echo strtotime(\"0000-00-00 00:00:00\");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600<\/pre> But on a 32 bit machine all of them would give bool(false). Check here for more.<\/p> What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines.<\/p> 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this :<\/p> set_time_limit(30);\/\/Rest of the code<\/pre> It may not always work. Any execution that happens outside the script via system calls\/os functions like socket operations, database operations etc. will not be under control of set_time_limit.<\/p> So if a database operation takes lot of time or \"hangs\" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time.<\/p> 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it.<\/p> A better solution :<\/p> \/**\tMethod to execute a command in the terminal\tUses :\t1. system\t2. passthru\t3. exec\t4. shell_exec*\/function terminal($command){\t\/\/system\tif(function_exists('system'))\t{\t\tob_start();\t\tsystem($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/passthru\telse if(function_exists('passthru'))\t{\t\tob_start();\t\tpassthru($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/exec\telse if(function_exists('exec'))\t{\t\texec($command , $output , $return_var);\t\t$output = implode(\"\\n\" , $output);\t}\t\/\/shell_exec\telse if(function_exists('shell_exec'))\t{\t\t$output = shell_exec($command) ;\t}\telse\t{\t\t$output = 'Command execution not possible on this system';\t\t$return_var = 1;\t}\treturn array('output' => $output , 'status' => $return_var);}terminal('ls');<\/pre> The above function will execute the shell command using whichever function is available , keeping your code consistent.<\/p> 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user.<\/p> 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise.<\/p> Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind.<\/p> 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily.<\/p> Few popular libraries are :<\/p> mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference.<\/p> 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code.<\/p> Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community.<\/p> They contain user feedback, expert advice and useful code snippets. So check them out.<\/p> 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!!<\/p> 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc.<\/p> The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more<\/p> 1. Codeigniter 2. WordPress 3. Joomla CMS<\/p> 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment.<\/p> Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster.<\/p> Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free.<\/p> "} 社區(qū) 文章 合集 問答 學習 課程 編程詞典 工具庫 開發(fā)工具 網(wǎng)站源碼 PHP 庫 JS特效 網(wǎng)站素材 擴展插件 AI工具 休閑 游戲下載 游戲教程 簡體中文 簡體中文 English 繁體中文 日本語 ??? Melayu Fran?ais Deutsch Login singup 首頁 后端開發(fā) php教程 40+ Useful Php tips for beginners ? Part 1 40+ Useful Php tips for beginners ? Part 1 WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB Jun 23, 2016 pm 02:37 PM PHP學習指南 http://www.binarytides.com/category/php-2/tutorial/ In this series we are going to look into some useful tips and techniques that can be used to improve and optimise your php code. Note that these php tips are meant for beginners and not those who are already using mvc frameworks etc. The Techniques 1. Do not use relative paths , instead define a ROOT path Its quite common to see such lines : require_once('http://www.cnblogs.com/lib/some_class.php'); This approach has many drawbacks : It first searches for directories specified in the include paths of php , then looks from the current directory. So many directories are checked. When a script is included by another script in a different directory , its base directory changes to that of the including script. Another issue , is that when a script is being run from cron , it may not have its parent directory as the working directory. So its a good idea to have absolute paths : define('ROOT' , '/var/www/project/');require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code Now this is an absolute path and will always stay constant. But we can improve this further. The directory /var/www/project can change , so do we change it everytime ? No instead we make it portable using magic constants like __FILE__ . Take a closer look : //suppose your script is /var/www/project/index.php//Then __FILE__ will always have that full path.define('ROOT' , pathinfo(__FILE__, PATHINFO_DIRNAME));require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code So now even if you shift your project to a different directory , like moving it to an online server , the same code will run without any changes. 2. Dont use require , include , require_once or include_once Your script could be including various files on top , like class libraries , files for utility and helper functions etc like this : require_once('lib/Database.php');require_once('lib/Mail.php');require_once('helpers/utitlity_functions.php'); This is rather primitive. The code needs to be more flexible. Write up helper functions to include things more easily. Lets take an example : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); require_once( $path ); }load_class('Database');load_class('Mail'); See any difference ? You must. It does not need any more explanation. You can improve this further if you wish to like this : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); if(file_exists($path)) { require_once( $path ); }} There are a lot of things that can be done with this : Search multiple directories for the same class file. Change the directory containing class files easily , without breaking the code anywhere. Use similar functions for loading files that contain helper functions , html content etc. 3. Maintain debugging environment in your application During development we echo database queries , dump variables which are creating problems , and then once the problem is solved , we comment them or erase them. But its a good idea to let everything stay and help in the long run On your development machine you can do this : define('ENVIRONMENT' , 'development');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } And on the server you can do this : define('ENVIRONMENT' , 'production');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } 4. Propagate status messages via session Status messages are those messages that are generated after doing a task. <?phpif($wrong_username || $wrong_password){ $msg = 'Invalid username or password';}?><html><body><?php echo $msg; ?><form>...</form></body></html> Code like that is common. Using variables to show status messages has limitations. They cannot be send via redirects (unless you propagate them as GET variables to the next script , which is very silly). In large scripts there might be multiple messages etc. Best way is to use session to propagate them (even if on same page). For this there has to be a session_start on every page. function set_flash($msg){ $_SESSION['message'] = $msg;}function get_flash(){ $msg = $_SESSION['message']; unset($_SESSION['message']); return $msg;} and in your script : <?phpif($wrong_username || $wrong_password){ set_flash('Invalid username or password');}?><html><body>Status is : <?php echo get_flash(); ?><form>...</form></body></html> 5. Make your functions flexible function add_to_cart($item_id , $qty){ $_SESSION['cart'][$item_id] = $qty;}add_to_cart( 'IPHONE3' , 2 ); When adding a single item you use the above function. When adding multiple items , will you create another function ? NO. Just make the function flexible enough to take different kinds of parameters. Have a closer look : function add_to_cart($item_id , $qty){ if(!is_array($item_id)) { $_SESSION['cart'][$item_id] = $qty; } else { foreach($item_id as $i_id => $qty) { $_SESSION['cart'][$i_id] = $qty; } }}add_to_cart( 'IPHONE3' , 2 );add_to_cart( array('IPHONE3' => 2 , 'IPAD' => 5) ); So now the same function can accept different kinds of output. The above can be applied in lots of places to make your code more agile. 6. Omit the closing php tag if it is the last thing in a script I wonder why this tip is omitted from so many blog posts on php tips. <?phpecho "Hello";//Now dont close this tag This will save you lots of problem. Lets take an example : A class file super_class.php <?phpclass super_class{ function super_function() { //super code }}?>//super extra character after the closing tag Now index.php require_once('super_class.php');//echo an image or pdf , or set the cookies or session data And you will get Headers already send error. Why ? because the "super extra character" has been echoed , and all headers went along with that. Now you start debugging. You may have to waste many hours to find the super extra space. Hence make it a habit to omit the closing tag : <?phpclass super_class{ function super_function() { //super code }}//No closing tag Thats better. 7. Collect all output at one place , and output at one shot to the browser This is called output buffering. Lets say you have been echoing content from different functions like this : function print_header(){ echo "<div id='header'>Site Log and Login links</div>";}function print_footer(){ echo "<div id='footer'>Site was made by me</div>";}print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}print_footer(); Instead of doing like that , first collect all output in one place. You can either store it inside variables in the functions or use ob_start and ob_end_clean. So now it should look like function print_header(){ $o = "<div id='header'>Site Log and Login links</div>"; return $o;}function print_footer(){ $o = "<div id='footer'>Site was made by me</div>"; return $o;}echo print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}echo print_footer(); So why should you do output buffering : You can change the output just before sending it to browser if you need to. Think about doing some str_replaces , or may be preg_replaces or may be adding some extra html at the end like profiler/debugger output Its a bad idea to send output to browser and do php processing at the same time. Have you ever seen a website where there is a Fatal error in the sidebar or in a box in the middle of the screen. You know why that happens ? Because processing and output are being mixed. 8. Send correct mime types via header when outputting non-html content Lets echo some xml. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataecho $xml; Works fine. But it needs some improvement. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataheader("content-type: text/xml");echo $xml; Note that header line. That line tells the browser that the content is xml content. So the browser can handle it correctly. Many javascript libraries also rely on header information. Similarly for javascript , css , jpg image , png image : Javascript header("content-type: application/x-javascript");echo "var a = 10"; CSS header("content-type: text/css");echo "#div id { background:#000; }"; 9. Set the correct character encoding for a mysql connection Ever faced a problem that unicode/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation. $host = 'localhost';$username = 'root';$password = 'super_secret';//Attempt to connect to database$c = mysqli_connect($host , $username, $password); //Check connection validityif (!$c) { die ("Could not connect to the database host: <br />". mysqli_connect_error());} //Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){ die('mysqli_set_charset() failed');} Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application. Otherwise what will happen ? You will see lots of boxes and ???????? in non english text. 10. Use htmlentities with the correct characterset option Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc. $value = htmlentities($this->value , ENT_QUOTES , 'UTF-8'); Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual. 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php. Use apache mod_gzip/mod_deflate to compress content via the .htaccess file. 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php. $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= "'$image' ,";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;//Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,]; Be smart. use json_encode : $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;//Output is : var images = ["myself.png","friends.png","colleagues.png"] Isn't that neat ? 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of "debugging" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on. Make sure that your application is as intelligent as possible and reports the most important information in the shortest time. $contents = "All the content";$file_path = "/var/www/project/content.txt";file_put_contents($file_path , $contents); That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons : Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file. $contents = "All the content";$dir = '/var/www/project';$file_path = $dir . "/content.txt";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die("Directory $dir is not writable, or does not exist. Please check");} By doing this you get the accurate information that where is a file write failing and why 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are "accessible" outside. Otherwise for example the files may be created by "php" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on. // Read and write for owner, read for everybody elsechmod("/somedir/somefile", 0644);// Everything for owner, read and execute for otherschmod("/somedir/somefile", 0755); 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ //Save the things} The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this : if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ //Save the things} Now you are free from the value the submit button 16. Use static variables in function where they always have same value //Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} Instead use static variables as : //Delay for some timefunction delay(){ static $sync_delay = null; if($sync_delay == null) { $sync_delay = get_option('sync_delay'); } echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} 17. Don't use the $_SESSION variable directly Some simple examples are : $_SESSION['username'] = $username;$username = $_SESSION['username']; But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain. Hence use application specific keys with wrapper functions : define('APP_ID' , 'abc_corp_ecommerce');//Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}//Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;} 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like : function utility_a(){ //This function does a utility thing like string processing}function utility_b(){ //This function does nother utility thing like database processing}function utility_c(){ //This function is ...} And you use the function throughout your application freely. You may want to wrap them into a class as static functions : class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}//and call them as $a = Utility::utility_a();$b = Utility::utility_b(); One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else. 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++; Its absolutely a WASTE. Write if($a == true){ $a_count++;} Dont try to make your code shorter by eating up syntax. Rather make your logic shorter. Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this : foreach($arr as $c => $v){ $arr[$c] = trim($v);} But it can more cleaner with array_map : $arr = array_map('trim' , $arr); This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more. 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters. The php filter extension provides simple way to validate or check values as being a valid 'something'. 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate']; Its a good habit. 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded : $db_records_in_array_format; //This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; //2MB moresome_function($cc); //Another 2MB ? The above thing is common when importing a csv file or exporting table to a csv file Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays. Consider passing them by reference , or storing them in a class variable : $a = get_large_array();pass_to_function(&$a); by doing this the same variable (and not its copy) will be available to the function. Check documentation class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { //process $this->a }} unset them as soon as possible , so that memory is freed and rest of the script can relax. Here is a simple demonstration of how assign by reference can save memory in some cases <?phpini_set('display_errors' , true);error_reporting(E_ALL);$a = array();for($i = 0; $i < 100000 ; $i++){ $a[$i] = 'A'.$i;}echo 'Memory usage in MB : '. memory_get_usage() / 1000000 . '<br />';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() / 1000000 . '<br />';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() / 1000000 . '<br />';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() / 1000000 . '<br />'; The output on a typical php 5.4 machine is : Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more. 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this : function add_to_cart(){ $db = new Database(); $db->query("INSERT INTO cart .....");}function empty_cart(){ $db = new Database(); $db->query("DELETE FROM cart .....");} Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory. Use the singleton pattern for special cases like database connection. 26. Avoid direct SQL query , abstract it $query = "INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')";$db->query($query); //call to mysqli_query() The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like: All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries. A very simple example of an activerecord insert function can be like this : function insert_record($table_name , $data){ foreach($data as $key => $value) { //mysqli_real_escape_string $data[$key] = $db->mres($value); } $fields = implode(',' , array_keys($data)); $values = "'" . implode("','" , array_values($data)) . "'"; //Final query $query = "INSERT INTO {$table}($fields) VALUES($values)"; return $db->query($query);}//data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);//perform the INSERT queryinsert_record('users' , $data); The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse). This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise. 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again. Benefits : Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue. Storing session in database makes many other things easier like: Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example : <head> <base href="http://www.domain.com/store/"></head><body> <img src="/static/imghw/default1.png" data-src="happy.jpg" class="lazy" / alt="40+ Useful Php tips for beginners ? Part 1" ></body></html> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories. Lets take an example www.domain.com/store/home.php www.domain.com/store/products/ipad.php In home.php the following can be written : <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> But in ipad.php the links have to be like this : <a href="../home.php">Home</a><a href="ipad.php">Ipad</a> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag. <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products/ipad.php 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing. ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT); On production , the display should be disabled. ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark. After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set. ini_set('log_errors' , '1');ini_set('error_log' , '/path/to/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); Note : 1. The path '/path/to/errors.txt' should be writable by the web server for errors to be logged there. 2. A separate error file is specified , otherwise all logs would go inside the apache/web server error log and get mixed up with other apache errors. 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver). 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like /var/log dont have to searched. 5. Dont set error_reporting to 0. It will not log anything then. Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file. Set 'display_errors=On' in php.ini on development machine On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page. Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work. Set 'display_errors=Off' in php.ini on production machine Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away. 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results. On a 64 bit machine you can see such output. $ php -aInteractive shellphp > echo strtotime("0000-00-00 00:00:00");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600 But on a 32 bit machine all of them would give bool(false). Check here for more. What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines. 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this : set_time_limit(30);//Rest of the code It may not always work. Any execution that happens outside the script via system calls/os functions like socket operations, database operations etc. will not be under control of set_time_limit. So if a database operation takes lot of time or "hangs" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time. 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it. A better solution : /** Method to execute a command in the terminal Uses : 1. system 2. passthru 3. exec 4. shell_exec*/function terminal($command){ //system if(function_exists('system')) { ob_start(); system($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //passthru else if(function_exists('passthru')) { ob_start(); passthru($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //exec else if(function_exists('exec')) { exec($command , $output , $return_var); $output = implode("\n" , $output); } //shell_exec else if(function_exists('shell_exec')) { $output = shell_exec($command) ; } else { $output = 'Command execution not possible on this system'; $return_var = 1; } return array('output' => $output , 'status' => $return_var);}terminal('ls'); The above function will execute the shell command using whichever function is available , keeping your code consistent. 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user. 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise. Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind. 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily. Few popular libraries are : mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference. 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code. Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community. They contain user feedback, expert advice and useful code snippets. So check them out. 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!! 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc. The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more 1. Codeigniter 2. WordPress 3. Joomla CMS 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment. Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster. Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free. 本站聲明 本文內(nèi)容由網(wǎng)友自發(fā)貢獻,版權(quán)歸原作者所有,本站不承擔相應(yīng)法律責任。如您發(fā)現(xiàn)有涉嫌抄襲侵權(quán)的內(nèi)容,請聯(lián)系admin@php.cn 熱AI工具 Undress AI Tool 免費脫衣服圖片 Undresser.AI Undress 人工智能驅(qū)動的應(yīng)用程序,用于創(chuàng)建逼真的裸體照片 AI Clothes Remover 用于從照片中去除衣服的在線人工智能工具。 Clothoff.io AI脫衣機 Video Face Swap 使用我們完全免費的人工智能換臉工具輕松在任何視頻中換臉! 顯示更多 熱門文章 指南:恒星刀片保存文件位置/保存文件丟失/不保存 4 周前 By DDD Oguri Cap Build Guide |漂亮的德比志 2 周前 By Jack chen Agnes Tachyon Build Guide |漂亮的德比志 1 周前 By Jack chen 沙丘:覺醒 - 高級行星學家Quest演練 4 周前 By Jack chen 約會一切:德克和哈珀關(guān)系指南 4 周前 By Jack chen 顯示更多 熱工具 記事本++7.3.1 好用且免費的代碼編輯器 SublimeText3漢化版 中文版,非常好用 禪工作室 13.0.1 功能強大的PHP集成開發(fā)環(huán)境 Dreamweaver CS6 視覺化網(wǎng)頁開發(fā)工具 SublimeText3 Mac版 神級代碼編輯軟件(SublimeText3) 顯示更多 熱門話題 gmail郵箱登陸入口在哪里 8638 17 Java教程 1783 16 CakePHP 教程 1728 56 Laravel 教程 1578 28 PHP教程 1442 31 顯示更多 Related knowledge 如何在PHP中實施身份驗證和授權(quán)? Jun 20, 2025 am 01:03 AM tosecurelyhandleauthenticationandationallizationInphp,lofterTheSesteps:1.AlwaysHashPasswordSwithPassword_hash()andverifyusingspasspassword_verify(),usepreparedStatatementStopreventsqlineptions,andStoreSeruserDatain usseruserDatain $ _sessiveferterlogin.2.implementrole-2.imaccessccsccccccccccccccccccccccccc. 如何在PHP中安全地處理文件上傳? Jun 19, 2025 am 01:05 AM 要安全處理PHP中的文件上傳,核心在于驗證文件類型、重命名文件并限制權(quán)限。1.使用finfo_file()檢查真實MIME類型,僅允許特定類型如image/jpeg;2.用uniqid()生成隨機文件名,存儲至非Web根目錄;3.通過php.ini和HTML表單限制文件大小,設(shè)置目錄權(quán)限為0755;4.使用ClamAV掃描惡意軟件,增強安全性。這些步驟有效防止安全漏洞,確保文件上傳過程安全可靠。 PHP中==(松散比較)和===(嚴格的比較)之間有什么區(qū)別? Jun 19, 2025 am 01:07 AM 在PHP中,==與===的主要區(qū)別在于類型檢查的嚴格程度。==在比較前會進行類型轉(zhuǎn)換,例如5=="5"返回true,而===要求值和類型都相同才會返回true,例如5==="5"返回false。使用場景上,===更安全應(yīng)優(yōu)先使用,==僅在需要類型轉(zhuǎn)換時使用。 如何在PHP( - , *, /,%)中執(zhí)行算術(shù)操作? Jun 19, 2025 pm 05:13 PM PHP中使用基本數(shù)學運算的方法如下:1.加法用 號,支持整數(shù)和浮點數(shù),也可用于變量,字符串數(shù)字會自動轉(zhuǎn)換但不推薦依賴;2.減法用-號,變量同理,類型轉(zhuǎn)換同樣適用;3.乘法用*號,適用于數(shù)字及類似字符串;4.除法用/號,需避免除以零,并注意結(jié)果可能是浮點數(shù);5.取模用%號,可用于判斷奇偶數(shù),處理負數(shù)時余數(shù)符號與被除數(shù)一致。正確使用這些運算符的關(guān)鍵在于確保數(shù)據(jù)類型清晰并處理好邊界情況。 如何與PHP的NOSQL數(shù)據(jù)庫(例如MongoDB,Redis)進行交互? Jun 19, 2025 am 01:07 AM 是的,PHP可以通過特定擴展或庫與MongoDB和Redis等NoSQL數(shù)據(jù)庫交互。首先,使用MongoDBPHP驅(qū)動(通過PECL或Composer安裝)創(chuàng)建客戶端實例并操作數(shù)據(jù)庫及集合,支持插入、查詢、聚合等操作;其次,使用Predis庫或phpredis擴展連接Redis,執(zhí)行鍵值設(shè)置與獲取,推薦phpredis用于高性能場景,Predis則便于快速部署;兩者均適用于生產(chǎn)環(huán)境且文檔完善。 我如何了解最新的PHP開發(fā)和最佳實踐? Jun 23, 2025 am 12:56 AM TostaycurrentwithPHPdevelopmentsandbestpractices,followkeynewssourceslikePHP.netandPHPWeekly,engagewithcommunitiesonforumsandconferences,keeptoolingupdatedandgraduallyadoptnewfeatures,andreadorcontributetoopensourceprojects.First,followreliablesource 什么是PHP,為什么它用于Web開發(fā)? Jun 23, 2025 am 12:55 AM PHPbecamepopularforwebdevelopmentduetoitseaseoflearning,seamlessintegrationwithHTML,widespreadhostingsupport,andalargeecosystemincludingframeworkslikeLaravelandCMSplatformslikeWordPress.Itexcelsinhandlingformsubmissions,managingusersessions,interacti 如何設(shè)置PHP時區(qū)? Jun 25, 2025 am 01:00 AM tosetTherightTimeZoneInphp,restate_default_timezone_set()functionAtthestArtofyourscriptWithavalIdidentIdentifiersuchas'america/new_york'.1.usedate_default_default_timezone_set_set() See all articles
So you have a lot of utility functions in a file like :<\/p>
function utility_a(){ \/\/This function does a utility thing like string processing}function utility_b(){ \/\/This function does nother utility thing like database processing}function utility_c(){ \/\/This function is ...}<\/pre> And you use the function throughout your application freely. You may want to wrap them into a class as static functions :<\/p> class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}\/\/and call them as $a = Utility::utility_a();$b = Utility::utility_b();<\/pre> One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else.<\/p> 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++;<\/pre> Its absolutely a WASTE.<\/p> Write<\/p> if($a == true){ $a_count++;}<\/pre> Dont try to make your code shorter by eating up syntax. Rather make your logic shorter.<\/p> Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this :<\/p> foreach($arr as $c => $v){\t$arr[$c] = trim($v);}<\/pre> But it can more cleaner with array_map :<\/p> $arr = array_map('trim' , $arr);<\/pre> This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more.<\/p> 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters.<\/p> The php filter extension provides simple way to validate or check values as being a valid 'something'.<\/p> 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate'];<\/pre> Its a good habit.<\/p> 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose<\/p> 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded :<\/p> $db_records_in_array_format; \/\/This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; \/\/2MB moresome_function($cc); \/\/Another 2MB ?<\/pre> The above thing is common when importing a csv file or exporting table to a csv file<\/p> Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays.<\/p> Consider passing them by reference , or storing them in a class variable :<\/p> $a = get_large_array();pass_to_function(&$a);<\/pre> by doing this the same variable (and not its copy) will be available to the function. Check documentation<\/p> class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { \/\/process $this->a }}<\/pre> unset them as soon as possible , so that memory is freed and rest of the script can relax.<\/p> Here is a simple demonstration of how assign by reference can save memory in some cases<\/p> ';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() \/ 1000000 . '';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() \/ 1000000 . '';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() \/ 1000000 . '';<\/pre> The output on a typical php 5.4 machine is :<\/p> Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 <\/p> So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more.<\/p> 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this :<\/p> function add_to_cart(){ $db = new Database(); $db->query(\"INSERT INTO cart .....\");}function empty_cart(){ $db = new Database(); $db->query(\"DELETE FROM cart .....\");}<\/pre> Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory.<\/p> Use the singleton pattern for special cases like database connection.<\/p> 26. Avoid direct SQL query , abstract it $query = \"INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')\";$db->query($query); \/\/call to mysqli_query()<\/pre> The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like:<\/p> All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord<\/p> It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries.<\/p> A very simple example of an activerecord insert function can be like this :<\/p> function insert_record($table_name , $data){ foreach($data as $key => $value) {\t\/\/mysqli_real_escape_string $data[$key] = $db->mres($value); }\t\t $fields = implode(',' , array_keys($data)); $values = \"'\" . implode(\"','\" , array_values($data)) . \"'\"; \/\/Final query\t $query = \"INSERT INTO {$table}($fields) VALUES($values)\";\t\t return $db->query($query);}\/\/data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);\/\/perform the INSERT queryinsert_record('users' , $data);<\/pre> The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse).<\/p> This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise.<\/p> 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again.<\/p> Benefits :<\/p> Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue.<\/p> Storing session in database makes many other things easier like:<\/p> Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines\/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example :<\/p> <\/head> <\/body><\/html><\/pre> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories.<\/p> Lets take an example<\/p> www.domain.com\/store\/home.php www.domain.com\/store\/products\/ipad.php<\/p> In home.php the following can be written :<\/p> Home<\/a>Ipad<\/a><\/pre> But in ipad.php the links have to be like this :<\/p> Home<\/a>Ipad<\/a><\/pre> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag.<\/p> <\/head>Home<\/a>Ipad<\/a><\/body><\/html><\/pre> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products\/ipad.php<\/p> 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing.<\/p> ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT);<\/pre> On production , the display should be disabled.<\/p> ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark.<\/p> After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set.<\/p> ini_set('log_errors' , '1');ini_set('error_log' , '\/path\/to\/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> Note :<\/p> 1. The path '\/path\/to\/errors.txt' should be writable by the web server for errors to be logged there.<\/p> 2. A separate error file is specified , otherwise all logs would go inside the apache\/web server error log and get mixed up with other apache errors.<\/p> 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver).<\/p> 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like \/var\/log dont have to searched.<\/p> 5. Dont set error_reporting to 0. It will not log anything then.<\/p> Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file.<\/p> Set 'display_errors=On' in php.ini on development machine<\/p> On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page.<\/p> Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work.<\/p> Set 'display_errors=Off' in php.ini on production machine<\/p> Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away.<\/p> 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results.<\/p> On a 64 bit machine you can see such output.<\/p> $ php -aInteractive shellphp > echo strtotime(\"0000-00-00 00:00:00\");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600<\/pre> But on a 32 bit machine all of them would give bool(false). Check here for more.<\/p> What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines.<\/p> 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this :<\/p> set_time_limit(30);\/\/Rest of the code<\/pre> It may not always work. Any execution that happens outside the script via system calls\/os functions like socket operations, database operations etc. will not be under control of set_time_limit.<\/p> So if a database operation takes lot of time or \"hangs\" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time.<\/p> 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it.<\/p> A better solution :<\/p> \/**\tMethod to execute a command in the terminal\tUses :\t1. system\t2. passthru\t3. exec\t4. shell_exec*\/function terminal($command){\t\/\/system\tif(function_exists('system'))\t{\t\tob_start();\t\tsystem($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/passthru\telse if(function_exists('passthru'))\t{\t\tob_start();\t\tpassthru($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/exec\telse if(function_exists('exec'))\t{\t\texec($command , $output , $return_var);\t\t$output = implode(\"\\n\" , $output);\t}\t\/\/shell_exec\telse if(function_exists('shell_exec'))\t{\t\t$output = shell_exec($command) ;\t}\telse\t{\t\t$output = 'Command execution not possible on this system';\t\t$return_var = 1;\t}\treturn array('output' => $output , 'status' => $return_var);}terminal('ls');<\/pre> The above function will execute the shell command using whichever function is available , keeping your code consistent.<\/p> 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user.<\/p> 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise.<\/p> Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind.<\/p> 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily.<\/p> Few popular libraries are :<\/p> mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference.<\/p> 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code.<\/p> Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community.<\/p> They contain user feedback, expert advice and useful code snippets. So check them out.<\/p> 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!!<\/p> 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc.<\/p> The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more<\/p> 1. Codeigniter 2. WordPress 3. Joomla CMS<\/p> 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment.<\/p> Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster.<\/p> Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free.<\/p> "} 社區(qū) 文章 合集 問答 學習 課程 編程詞典 工具庫 開發(fā)工具 網(wǎng)站源碼 PHP 庫 JS特效 網(wǎng)站素材 擴展插件 AI工具 休閑 游戲下載 游戲教程 簡體中文 簡體中文 English 繁體中文 日本語 ??? Melayu Fran?ais Deutsch Login singup 首頁 后端開發(fā) php教程 40+ Useful Php tips for beginners ? Part 1 40+ Useful Php tips for beginners ? Part 1 WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB Jun 23, 2016 pm 02:37 PM PHP學習指南 http://www.binarytides.com/category/php-2/tutorial/ In this series we are going to look into some useful tips and techniques that can be used to improve and optimise your php code. Note that these php tips are meant for beginners and not those who are already using mvc frameworks etc. The Techniques 1. Do not use relative paths , instead define a ROOT path Its quite common to see such lines : require_once('http://www.cnblogs.com/lib/some_class.php'); This approach has many drawbacks : It first searches for directories specified in the include paths of php , then looks from the current directory. So many directories are checked. When a script is included by another script in a different directory , its base directory changes to that of the including script. Another issue , is that when a script is being run from cron , it may not have its parent directory as the working directory. So its a good idea to have absolute paths : define('ROOT' , '/var/www/project/');require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code Now this is an absolute path and will always stay constant. But we can improve this further. The directory /var/www/project can change , so do we change it everytime ? No instead we make it portable using magic constants like __FILE__ . Take a closer look : //suppose your script is /var/www/project/index.php//Then __FILE__ will always have that full path.define('ROOT' , pathinfo(__FILE__, PATHINFO_DIRNAME));require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code So now even if you shift your project to a different directory , like moving it to an online server , the same code will run without any changes. 2. Dont use require , include , require_once or include_once Your script could be including various files on top , like class libraries , files for utility and helper functions etc like this : require_once('lib/Database.php');require_once('lib/Mail.php');require_once('helpers/utitlity_functions.php'); This is rather primitive. The code needs to be more flexible. Write up helper functions to include things more easily. Lets take an example : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); require_once( $path ); }load_class('Database');load_class('Mail'); See any difference ? You must. It does not need any more explanation. You can improve this further if you wish to like this : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); if(file_exists($path)) { require_once( $path ); }} There are a lot of things that can be done with this : Search multiple directories for the same class file. Change the directory containing class files easily , without breaking the code anywhere. Use similar functions for loading files that contain helper functions , html content etc. 3. Maintain debugging environment in your application During development we echo database queries , dump variables which are creating problems , and then once the problem is solved , we comment them or erase them. But its a good idea to let everything stay and help in the long run On your development machine you can do this : define('ENVIRONMENT' , 'development');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } And on the server you can do this : define('ENVIRONMENT' , 'production');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } 4. Propagate status messages via session Status messages are those messages that are generated after doing a task. <?phpif($wrong_username || $wrong_password){ $msg = 'Invalid username or password';}?><html><body><?php echo $msg; ?><form>...</form></body></html> Code like that is common. Using variables to show status messages has limitations. They cannot be send via redirects (unless you propagate them as GET variables to the next script , which is very silly). In large scripts there might be multiple messages etc. Best way is to use session to propagate them (even if on same page). For this there has to be a session_start on every page. function set_flash($msg){ $_SESSION['message'] = $msg;}function get_flash(){ $msg = $_SESSION['message']; unset($_SESSION['message']); return $msg;} and in your script : <?phpif($wrong_username || $wrong_password){ set_flash('Invalid username or password');}?><html><body>Status is : <?php echo get_flash(); ?><form>...</form></body></html> 5. Make your functions flexible function add_to_cart($item_id , $qty){ $_SESSION['cart'][$item_id] = $qty;}add_to_cart( 'IPHONE3' , 2 ); When adding a single item you use the above function. When adding multiple items , will you create another function ? NO. Just make the function flexible enough to take different kinds of parameters. Have a closer look : function add_to_cart($item_id , $qty){ if(!is_array($item_id)) { $_SESSION['cart'][$item_id] = $qty; } else { foreach($item_id as $i_id => $qty) { $_SESSION['cart'][$i_id] = $qty; } }}add_to_cart( 'IPHONE3' , 2 );add_to_cart( array('IPHONE3' => 2 , 'IPAD' => 5) ); So now the same function can accept different kinds of output. The above can be applied in lots of places to make your code more agile. 6. Omit the closing php tag if it is the last thing in a script I wonder why this tip is omitted from so many blog posts on php tips. <?phpecho "Hello";//Now dont close this tag This will save you lots of problem. Lets take an example : A class file super_class.php <?phpclass super_class{ function super_function() { //super code }}?>//super extra character after the closing tag Now index.php require_once('super_class.php');//echo an image or pdf , or set the cookies or session data And you will get Headers already send error. Why ? because the "super extra character" has been echoed , and all headers went along with that. Now you start debugging. You may have to waste many hours to find the super extra space. Hence make it a habit to omit the closing tag : <?phpclass super_class{ function super_function() { //super code }}//No closing tag Thats better. 7. Collect all output at one place , and output at one shot to the browser This is called output buffering. Lets say you have been echoing content from different functions like this : function print_header(){ echo "<div id='header'>Site Log and Login links</div>";}function print_footer(){ echo "<div id='footer'>Site was made by me</div>";}print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}print_footer(); Instead of doing like that , first collect all output in one place. You can either store it inside variables in the functions or use ob_start and ob_end_clean. So now it should look like function print_header(){ $o = "<div id='header'>Site Log and Login links</div>"; return $o;}function print_footer(){ $o = "<div id='footer'>Site was made by me</div>"; return $o;}echo print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}echo print_footer(); So why should you do output buffering : You can change the output just before sending it to browser if you need to. Think about doing some str_replaces , or may be preg_replaces or may be adding some extra html at the end like profiler/debugger output Its a bad idea to send output to browser and do php processing at the same time. Have you ever seen a website where there is a Fatal error in the sidebar or in a box in the middle of the screen. You know why that happens ? Because processing and output are being mixed. 8. Send correct mime types via header when outputting non-html content Lets echo some xml. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataecho $xml; Works fine. But it needs some improvement. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataheader("content-type: text/xml");echo $xml; Note that header line. That line tells the browser that the content is xml content. So the browser can handle it correctly. Many javascript libraries also rely on header information. Similarly for javascript , css , jpg image , png image : Javascript header("content-type: application/x-javascript");echo "var a = 10"; CSS header("content-type: text/css");echo "#div id { background:#000; }"; 9. Set the correct character encoding for a mysql connection Ever faced a problem that unicode/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation. $host = 'localhost';$username = 'root';$password = 'super_secret';//Attempt to connect to database$c = mysqli_connect($host , $username, $password); //Check connection validityif (!$c) { die ("Could not connect to the database host: <br />". mysqli_connect_error());} //Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){ die('mysqli_set_charset() failed');} Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application. Otherwise what will happen ? You will see lots of boxes and ???????? in non english text. 10. Use htmlentities with the correct characterset option Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc. $value = htmlentities($this->value , ENT_QUOTES , 'UTF-8'); Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual. 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php. Use apache mod_gzip/mod_deflate to compress content via the .htaccess file. 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php. $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= "'$image' ,";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;//Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,]; Be smart. use json_encode : $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;//Output is : var images = ["myself.png","friends.png","colleagues.png"] Isn't that neat ? 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of "debugging" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on. Make sure that your application is as intelligent as possible and reports the most important information in the shortest time. $contents = "All the content";$file_path = "/var/www/project/content.txt";file_put_contents($file_path , $contents); That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons : Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file. $contents = "All the content";$dir = '/var/www/project';$file_path = $dir . "/content.txt";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die("Directory $dir is not writable, or does not exist. Please check");} By doing this you get the accurate information that where is a file write failing and why 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are "accessible" outside. Otherwise for example the files may be created by "php" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on. // Read and write for owner, read for everybody elsechmod("/somedir/somefile", 0644);// Everything for owner, read and execute for otherschmod("/somedir/somefile", 0755); 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ //Save the things} The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this : if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ //Save the things} Now you are free from the value the submit button 16. Use static variables in function where they always have same value //Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} Instead use static variables as : //Delay for some timefunction delay(){ static $sync_delay = null; if($sync_delay == null) { $sync_delay = get_option('sync_delay'); } echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} 17. Don't use the $_SESSION variable directly Some simple examples are : $_SESSION['username'] = $username;$username = $_SESSION['username']; But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain. Hence use application specific keys with wrapper functions : define('APP_ID' , 'abc_corp_ecommerce');//Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}//Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;} 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like : function utility_a(){ //This function does a utility thing like string processing}function utility_b(){ //This function does nother utility thing like database processing}function utility_c(){ //This function is ...} And you use the function throughout your application freely. You may want to wrap them into a class as static functions : class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}//and call them as $a = Utility::utility_a();$b = Utility::utility_b(); One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else. 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++; Its absolutely a WASTE. Write if($a == true){ $a_count++;} Dont try to make your code shorter by eating up syntax. Rather make your logic shorter. Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this : foreach($arr as $c => $v){ $arr[$c] = trim($v);} But it can more cleaner with array_map : $arr = array_map('trim' , $arr); This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more. 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters. The php filter extension provides simple way to validate or check values as being a valid 'something'. 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate']; Its a good habit. 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded : $db_records_in_array_format; //This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; //2MB moresome_function($cc); //Another 2MB ? The above thing is common when importing a csv file or exporting table to a csv file Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays. Consider passing them by reference , or storing them in a class variable : $a = get_large_array();pass_to_function(&$a); by doing this the same variable (and not its copy) will be available to the function. Check documentation class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { //process $this->a }} unset them as soon as possible , so that memory is freed and rest of the script can relax. Here is a simple demonstration of how assign by reference can save memory in some cases <?phpini_set('display_errors' , true);error_reporting(E_ALL);$a = array();for($i = 0; $i < 100000 ; $i++){ $a[$i] = 'A'.$i;}echo 'Memory usage in MB : '. memory_get_usage() / 1000000 . '<br />';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() / 1000000 . '<br />';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() / 1000000 . '<br />';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() / 1000000 . '<br />'; The output on a typical php 5.4 machine is : Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more. 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this : function add_to_cart(){ $db = new Database(); $db->query("INSERT INTO cart .....");}function empty_cart(){ $db = new Database(); $db->query("DELETE FROM cart .....");} Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory. Use the singleton pattern for special cases like database connection. 26. Avoid direct SQL query , abstract it $query = "INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')";$db->query($query); //call to mysqli_query() The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like: All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries. A very simple example of an activerecord insert function can be like this : function insert_record($table_name , $data){ foreach($data as $key => $value) { //mysqli_real_escape_string $data[$key] = $db->mres($value); } $fields = implode(',' , array_keys($data)); $values = "'" . implode("','" , array_values($data)) . "'"; //Final query $query = "INSERT INTO {$table}($fields) VALUES($values)"; return $db->query($query);}//data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);//perform the INSERT queryinsert_record('users' , $data); The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse). This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise. 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again. Benefits : Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue. Storing session in database makes many other things easier like: Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example : <head> <base href="http://www.domain.com/store/"></head><body> <img src="/static/imghw/default1.png" data-src="happy.jpg" class="lazy" / alt="40+ Useful Php tips for beginners ? Part 1" ></body></html> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories. Lets take an example www.domain.com/store/home.php www.domain.com/store/products/ipad.php In home.php the following can be written : <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> But in ipad.php the links have to be like this : <a href="../home.php">Home</a><a href="ipad.php">Ipad</a> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag. <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products/ipad.php 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing. ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT); On production , the display should be disabled. ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark. After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set. ini_set('log_errors' , '1');ini_set('error_log' , '/path/to/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); Note : 1. The path '/path/to/errors.txt' should be writable by the web server for errors to be logged there. 2. A separate error file is specified , otherwise all logs would go inside the apache/web server error log and get mixed up with other apache errors. 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver). 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like /var/log dont have to searched. 5. Dont set error_reporting to 0. It will not log anything then. Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file. Set 'display_errors=On' in php.ini on development machine On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page. Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work. Set 'display_errors=Off' in php.ini on production machine Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away. 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results. On a 64 bit machine you can see such output. $ php -aInteractive shellphp > echo strtotime("0000-00-00 00:00:00");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600 But on a 32 bit machine all of them would give bool(false). Check here for more. What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines. 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this : set_time_limit(30);//Rest of the code It may not always work. Any execution that happens outside the script via system calls/os functions like socket operations, database operations etc. will not be under control of set_time_limit. So if a database operation takes lot of time or "hangs" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time. 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it. A better solution : /** Method to execute a command in the terminal Uses : 1. system 2. passthru 3. exec 4. shell_exec*/function terminal($command){ //system if(function_exists('system')) { ob_start(); system($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //passthru else if(function_exists('passthru')) { ob_start(); passthru($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //exec else if(function_exists('exec')) { exec($command , $output , $return_var); $output = implode("\n" , $output); } //shell_exec else if(function_exists('shell_exec')) { $output = shell_exec($command) ; } else { $output = 'Command execution not possible on this system'; $return_var = 1; } return array('output' => $output , 'status' => $return_var);}terminal('ls'); The above function will execute the shell command using whichever function is available , keeping your code consistent. 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user. 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise. Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind. 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily. Few popular libraries are : mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference. 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code. Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community. They contain user feedback, expert advice and useful code snippets. So check them out. 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!! 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc. The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more 1. Codeigniter 2. WordPress 3. Joomla CMS 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment. Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster. Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free. 本站聲明 本文內(nèi)容由網(wǎng)友自發(fā)貢獻,版權(quán)歸原作者所有,本站不承擔相應(yīng)法律責任。如您發(fā)現(xiàn)有涉嫌抄襲侵權(quán)的內(nèi)容,請聯(lián)系admin@php.cn 熱AI工具 Undress AI Tool 免費脫衣服圖片 Undresser.AI Undress 人工智能驅(qū)動的應(yīng)用程序,用于創(chuàng)建逼真的裸體照片 AI Clothes Remover 用于從照片中去除衣服的在線人工智能工具。 Clothoff.io AI脫衣機 Video Face Swap 使用我們完全免費的人工智能換臉工具輕松在任何視頻中換臉! 顯示更多 熱門文章 指南:恒星刀片保存文件位置/保存文件丟失/不保存 4 周前 By DDD Oguri Cap Build Guide |漂亮的德比志 2 周前 By Jack chen Agnes Tachyon Build Guide |漂亮的德比志 1 周前 By Jack chen 沙丘:覺醒 - 高級行星學家Quest演練 4 周前 By Jack chen 約會一切:德克和哈珀關(guān)系指南 4 周前 By Jack chen 顯示更多 熱工具 記事本++7.3.1 好用且免費的代碼編輯器 SublimeText3漢化版 中文版,非常好用 禪工作室 13.0.1 功能強大的PHP集成開發(fā)環(huán)境 Dreamweaver CS6 視覺化網(wǎng)頁開發(fā)工具 SublimeText3 Mac版 神級代碼編輯軟件(SublimeText3) 顯示更多 熱門話題 gmail郵箱登陸入口在哪里 8638 17 Java教程 1783 16 CakePHP 教程 1728 56 Laravel 教程 1578 28 PHP教程 1442 31 顯示更多 Related knowledge 如何在PHP中實施身份驗證和授權(quán)? Jun 20, 2025 am 01:03 AM tosecurelyhandleauthenticationandationallizationInphp,lofterTheSesteps:1.AlwaysHashPasswordSwithPassword_hash()andverifyusingspasspassword_verify(),usepreparedStatatementStopreventsqlineptions,andStoreSeruserDatain usseruserDatain $ _sessiveferterlogin.2.implementrole-2.imaccessccsccccccccccccccccccccccccc. 如何在PHP中安全地處理文件上傳? Jun 19, 2025 am 01:05 AM 要安全處理PHP中的文件上傳,核心在于驗證文件類型、重命名文件并限制權(quán)限。1.使用finfo_file()檢查真實MIME類型,僅允許特定類型如image/jpeg;2.用uniqid()生成隨機文件名,存儲至非Web根目錄;3.通過php.ini和HTML表單限制文件大小,設(shè)置目錄權(quán)限為0755;4.使用ClamAV掃描惡意軟件,增強安全性。這些步驟有效防止安全漏洞,確保文件上傳過程安全可靠。 PHP中==(松散比較)和===(嚴格的比較)之間有什么區(qū)別? Jun 19, 2025 am 01:07 AM 在PHP中,==與===的主要區(qū)別在于類型檢查的嚴格程度。==在比較前會進行類型轉(zhuǎn)換,例如5=="5"返回true,而===要求值和類型都相同才會返回true,例如5==="5"返回false。使用場景上,===更安全應(yīng)優(yōu)先使用,==僅在需要類型轉(zhuǎn)換時使用。 如何在PHP( - , *, /,%)中執(zhí)行算術(shù)操作? Jun 19, 2025 pm 05:13 PM PHP中使用基本數(shù)學運算的方法如下:1.加法用 號,支持整數(shù)和浮點數(shù),也可用于變量,字符串數(shù)字會自動轉(zhuǎn)換但不推薦依賴;2.減法用-號,變量同理,類型轉(zhuǎn)換同樣適用;3.乘法用*號,適用于數(shù)字及類似字符串;4.除法用/號,需避免除以零,并注意結(jié)果可能是浮點數(shù);5.取模用%號,可用于判斷奇偶數(shù),處理負數(shù)時余數(shù)符號與被除數(shù)一致。正確使用這些運算符的關(guān)鍵在于確保數(shù)據(jù)類型清晰并處理好邊界情況。 如何與PHP的NOSQL數(shù)據(jù)庫(例如MongoDB,Redis)進行交互? Jun 19, 2025 am 01:07 AM 是的,PHP可以通過特定擴展或庫與MongoDB和Redis等NoSQL數(shù)據(jù)庫交互。首先,使用MongoDBPHP驅(qū)動(通過PECL或Composer安裝)創(chuàng)建客戶端實例并操作數(shù)據(jù)庫及集合,支持插入、查詢、聚合等操作;其次,使用Predis庫或phpredis擴展連接Redis,執(zhí)行鍵值設(shè)置與獲取,推薦phpredis用于高性能場景,Predis則便于快速部署;兩者均適用于生產(chǎn)環(huán)境且文檔完善。 我如何了解最新的PHP開發(fā)和最佳實踐? Jun 23, 2025 am 12:56 AM TostaycurrentwithPHPdevelopmentsandbestpractices,followkeynewssourceslikePHP.netandPHPWeekly,engagewithcommunitiesonforumsandconferences,keeptoolingupdatedandgraduallyadoptnewfeatures,andreadorcontributetoopensourceprojects.First,followreliablesource 什么是PHP,為什么它用于Web開發(fā)? Jun 23, 2025 am 12:55 AM PHPbecamepopularforwebdevelopmentduetoitseaseoflearning,seamlessintegrationwithHTML,widespreadhostingsupport,andalargeecosystemincludingframeworkslikeLaravelandCMSplatformslikeWordPress.Itexcelsinhandlingformsubmissions,managingusersessions,interacti 如何設(shè)置PHP時區(qū)? Jun 25, 2025 am 01:00 AM tosetTherightTimeZoneInphp,restate_default_timezone_set()functionAtthestArtofyourscriptWithavalIdidentIdentifiersuchas'america/new_york'.1.usedate_default_default_timezone_set_set() See all articles
And you use the function throughout your application freely. You may want to wrap them into a class as static functions :<\/p>
class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}\/\/and call them as $a = Utility::utility_a();$b = Utility::utility_b();<\/pre> One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else.<\/p> 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++;<\/pre> Its absolutely a WASTE.<\/p> Write<\/p> if($a == true){ $a_count++;}<\/pre> Dont try to make your code shorter by eating up syntax. Rather make your logic shorter.<\/p> Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this :<\/p> foreach($arr as $c => $v){\t$arr[$c] = trim($v);}<\/pre> But it can more cleaner with array_map :<\/p> $arr = array_map('trim' , $arr);<\/pre> This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more.<\/p> 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters.<\/p> The php filter extension provides simple way to validate or check values as being a valid 'something'.<\/p> 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate'];<\/pre> Its a good habit.<\/p> 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose<\/p> 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded :<\/p> $db_records_in_array_format; \/\/This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; \/\/2MB moresome_function($cc); \/\/Another 2MB ?<\/pre> The above thing is common when importing a csv file or exporting table to a csv file<\/p> Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays.<\/p> Consider passing them by reference , or storing them in a class variable :<\/p> $a = get_large_array();pass_to_function(&$a);<\/pre> by doing this the same variable (and not its copy) will be available to the function. Check documentation<\/p> class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { \/\/process $this->a }}<\/pre> unset them as soon as possible , so that memory is freed and rest of the script can relax.<\/p> Here is a simple demonstration of how assign by reference can save memory in some cases<\/p> ';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() \/ 1000000 . '';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() \/ 1000000 . '';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() \/ 1000000 . '';<\/pre> The output on a typical php 5.4 machine is :<\/p> Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 <\/p> So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more.<\/p> 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this :<\/p> function add_to_cart(){ $db = new Database(); $db->query(\"INSERT INTO cart .....\");}function empty_cart(){ $db = new Database(); $db->query(\"DELETE FROM cart .....\");}<\/pre> Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory.<\/p> Use the singleton pattern for special cases like database connection.<\/p> 26. Avoid direct SQL query , abstract it $query = \"INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')\";$db->query($query); \/\/call to mysqli_query()<\/pre> The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like:<\/p> All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord<\/p> It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries.<\/p> A very simple example of an activerecord insert function can be like this :<\/p> function insert_record($table_name , $data){ foreach($data as $key => $value) {\t\/\/mysqli_real_escape_string $data[$key] = $db->mres($value); }\t\t $fields = implode(',' , array_keys($data)); $values = \"'\" . implode(\"','\" , array_values($data)) . \"'\"; \/\/Final query\t $query = \"INSERT INTO {$table}($fields) VALUES($values)\";\t\t return $db->query($query);}\/\/data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);\/\/perform the INSERT queryinsert_record('users' , $data);<\/pre> The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse).<\/p> This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise.<\/p> 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again.<\/p> Benefits :<\/p> Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue.<\/p> Storing session in database makes many other things easier like:<\/p> Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines\/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example :<\/p> <\/head> <\/body><\/html><\/pre> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories.<\/p> Lets take an example<\/p> www.domain.com\/store\/home.php www.domain.com\/store\/products\/ipad.php<\/p> In home.php the following can be written :<\/p> Home<\/a>Ipad<\/a><\/pre> But in ipad.php the links have to be like this :<\/p> Home<\/a>Ipad<\/a><\/pre> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag.<\/p> <\/head>Home<\/a>Ipad<\/a><\/body><\/html><\/pre> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products\/ipad.php<\/p> 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing.<\/p> ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT);<\/pre> On production , the display should be disabled.<\/p> ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark.<\/p> After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set.<\/p> ini_set('log_errors' , '1');ini_set('error_log' , '\/path\/to\/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> Note :<\/p> 1. The path '\/path\/to\/errors.txt' should be writable by the web server for errors to be logged there.<\/p> 2. A separate error file is specified , otherwise all logs would go inside the apache\/web server error log and get mixed up with other apache errors.<\/p> 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver).<\/p> 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like \/var\/log dont have to searched.<\/p> 5. Dont set error_reporting to 0. It will not log anything then.<\/p> Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file.<\/p> Set 'display_errors=On' in php.ini on development machine<\/p> On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page.<\/p> Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work.<\/p> Set 'display_errors=Off' in php.ini on production machine<\/p> Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away.<\/p> 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results.<\/p> On a 64 bit machine you can see such output.<\/p> $ php -aInteractive shellphp > echo strtotime(\"0000-00-00 00:00:00\");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600<\/pre> But on a 32 bit machine all of them would give bool(false). Check here for more.<\/p> What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines.<\/p> 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this :<\/p> set_time_limit(30);\/\/Rest of the code<\/pre> It may not always work. Any execution that happens outside the script via system calls\/os functions like socket operations, database operations etc. will not be under control of set_time_limit.<\/p> So if a database operation takes lot of time or \"hangs\" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time.<\/p> 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it.<\/p> A better solution :<\/p> \/**\tMethod to execute a command in the terminal\tUses :\t1. system\t2. passthru\t3. exec\t4. shell_exec*\/function terminal($command){\t\/\/system\tif(function_exists('system'))\t{\t\tob_start();\t\tsystem($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/passthru\telse if(function_exists('passthru'))\t{\t\tob_start();\t\tpassthru($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/exec\telse if(function_exists('exec'))\t{\t\texec($command , $output , $return_var);\t\t$output = implode(\"\\n\" , $output);\t}\t\/\/shell_exec\telse if(function_exists('shell_exec'))\t{\t\t$output = shell_exec($command) ;\t}\telse\t{\t\t$output = 'Command execution not possible on this system';\t\t$return_var = 1;\t}\treturn array('output' => $output , 'status' => $return_var);}terminal('ls');<\/pre> The above function will execute the shell command using whichever function is available , keeping your code consistent.<\/p> 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user.<\/p> 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise.<\/p> Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind.<\/p> 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily.<\/p> Few popular libraries are :<\/p> mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference.<\/p> 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code.<\/p> Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community.<\/p> They contain user feedback, expert advice and useful code snippets. So check them out.<\/p> 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!!<\/p> 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc.<\/p> The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more<\/p> 1. Codeigniter 2. WordPress 3. Joomla CMS<\/p> 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment.<\/p> Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster.<\/p> Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free.<\/p> "} 社區(qū) 文章 合集 問答 學習 課程 編程詞典 工具庫 開發(fā)工具 網(wǎng)站源碼 PHP 庫 JS特效 網(wǎng)站素材 擴展插件 AI工具 休閑 游戲下載 游戲教程 簡體中文 簡體中文 English 繁體中文 日本語 ??? Melayu Fran?ais Deutsch Login singup 首頁 后端開發(fā) php教程 40+ Useful Php tips for beginners ? Part 1 40+ Useful Php tips for beginners ? Part 1 WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB Jun 23, 2016 pm 02:37 PM PHP學習指南 http://www.binarytides.com/category/php-2/tutorial/ In this series we are going to look into some useful tips and techniques that can be used to improve and optimise your php code. Note that these php tips are meant for beginners and not those who are already using mvc frameworks etc. The Techniques 1. Do not use relative paths , instead define a ROOT path Its quite common to see such lines : require_once('http://www.cnblogs.com/lib/some_class.php'); This approach has many drawbacks : It first searches for directories specified in the include paths of php , then looks from the current directory. So many directories are checked. When a script is included by another script in a different directory , its base directory changes to that of the including script. Another issue , is that when a script is being run from cron , it may not have its parent directory as the working directory. So its a good idea to have absolute paths : define('ROOT' , '/var/www/project/');require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code Now this is an absolute path and will always stay constant. But we can improve this further. The directory /var/www/project can change , so do we change it everytime ? No instead we make it portable using magic constants like __FILE__ . Take a closer look : //suppose your script is /var/www/project/index.php//Then __FILE__ will always have that full path.define('ROOT' , pathinfo(__FILE__, PATHINFO_DIRNAME));require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code So now even if you shift your project to a different directory , like moving it to an online server , the same code will run without any changes. 2. Dont use require , include , require_once or include_once Your script could be including various files on top , like class libraries , files for utility and helper functions etc like this : require_once('lib/Database.php');require_once('lib/Mail.php');require_once('helpers/utitlity_functions.php'); This is rather primitive. The code needs to be more flexible. Write up helper functions to include things more easily. Lets take an example : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); require_once( $path ); }load_class('Database');load_class('Mail'); See any difference ? You must. It does not need any more explanation. You can improve this further if you wish to like this : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); if(file_exists($path)) { require_once( $path ); }} There are a lot of things that can be done with this : Search multiple directories for the same class file. Change the directory containing class files easily , without breaking the code anywhere. Use similar functions for loading files that contain helper functions , html content etc. 3. Maintain debugging environment in your application During development we echo database queries , dump variables which are creating problems , and then once the problem is solved , we comment them or erase them. But its a good idea to let everything stay and help in the long run On your development machine you can do this : define('ENVIRONMENT' , 'development');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } And on the server you can do this : define('ENVIRONMENT' , 'production');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } 4. Propagate status messages via session Status messages are those messages that are generated after doing a task. <?phpif($wrong_username || $wrong_password){ $msg = 'Invalid username or password';}?><html><body><?php echo $msg; ?><form>...</form></body></html> Code like that is common. Using variables to show status messages has limitations. They cannot be send via redirects (unless you propagate them as GET variables to the next script , which is very silly). In large scripts there might be multiple messages etc. Best way is to use session to propagate them (even if on same page). For this there has to be a session_start on every page. function set_flash($msg){ $_SESSION['message'] = $msg;}function get_flash(){ $msg = $_SESSION['message']; unset($_SESSION['message']); return $msg;} and in your script : <?phpif($wrong_username || $wrong_password){ set_flash('Invalid username or password');}?><html><body>Status is : <?php echo get_flash(); ?><form>...</form></body></html> 5. Make your functions flexible function add_to_cart($item_id , $qty){ $_SESSION['cart'][$item_id] = $qty;}add_to_cart( 'IPHONE3' , 2 ); When adding a single item you use the above function. When adding multiple items , will you create another function ? NO. Just make the function flexible enough to take different kinds of parameters. Have a closer look : function add_to_cart($item_id , $qty){ if(!is_array($item_id)) { $_SESSION['cart'][$item_id] = $qty; } else { foreach($item_id as $i_id => $qty) { $_SESSION['cart'][$i_id] = $qty; } }}add_to_cart( 'IPHONE3' , 2 );add_to_cart( array('IPHONE3' => 2 , 'IPAD' => 5) ); So now the same function can accept different kinds of output. The above can be applied in lots of places to make your code more agile. 6. Omit the closing php tag if it is the last thing in a script I wonder why this tip is omitted from so many blog posts on php tips. <?phpecho "Hello";//Now dont close this tag This will save you lots of problem. Lets take an example : A class file super_class.php <?phpclass super_class{ function super_function() { //super code }}?>//super extra character after the closing tag Now index.php require_once('super_class.php');//echo an image or pdf , or set the cookies or session data And you will get Headers already send error. Why ? because the "super extra character" has been echoed , and all headers went along with that. Now you start debugging. You may have to waste many hours to find the super extra space. Hence make it a habit to omit the closing tag : <?phpclass super_class{ function super_function() { //super code }}//No closing tag Thats better. 7. Collect all output at one place , and output at one shot to the browser This is called output buffering. Lets say you have been echoing content from different functions like this : function print_header(){ echo "<div id='header'>Site Log and Login links</div>";}function print_footer(){ echo "<div id='footer'>Site was made by me</div>";}print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}print_footer(); Instead of doing like that , first collect all output in one place. You can either store it inside variables in the functions or use ob_start and ob_end_clean. So now it should look like function print_header(){ $o = "<div id='header'>Site Log and Login links</div>"; return $o;}function print_footer(){ $o = "<div id='footer'>Site was made by me</div>"; return $o;}echo print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}echo print_footer(); So why should you do output buffering : You can change the output just before sending it to browser if you need to. Think about doing some str_replaces , or may be preg_replaces or may be adding some extra html at the end like profiler/debugger output Its a bad idea to send output to browser and do php processing at the same time. Have you ever seen a website where there is a Fatal error in the sidebar or in a box in the middle of the screen. You know why that happens ? Because processing and output are being mixed. 8. Send correct mime types via header when outputting non-html content Lets echo some xml. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataecho $xml; Works fine. But it needs some improvement. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataheader("content-type: text/xml");echo $xml; Note that header line. That line tells the browser that the content is xml content. So the browser can handle it correctly. Many javascript libraries also rely on header information. Similarly for javascript , css , jpg image , png image : Javascript header("content-type: application/x-javascript");echo "var a = 10"; CSS header("content-type: text/css");echo "#div id { background:#000; }"; 9. Set the correct character encoding for a mysql connection Ever faced a problem that unicode/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation. $host = 'localhost';$username = 'root';$password = 'super_secret';//Attempt to connect to database$c = mysqli_connect($host , $username, $password); //Check connection validityif (!$c) { die ("Could not connect to the database host: <br />". mysqli_connect_error());} //Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){ die('mysqli_set_charset() failed');} Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application. Otherwise what will happen ? You will see lots of boxes and ???????? in non english text. 10. Use htmlentities with the correct characterset option Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc. $value = htmlentities($this->value , ENT_QUOTES , 'UTF-8'); Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual. 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php. Use apache mod_gzip/mod_deflate to compress content via the .htaccess file. 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php. $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= "'$image' ,";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;//Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,]; Be smart. use json_encode : $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;//Output is : var images = ["myself.png","friends.png","colleagues.png"] Isn't that neat ? 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of "debugging" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on. Make sure that your application is as intelligent as possible and reports the most important information in the shortest time. $contents = "All the content";$file_path = "/var/www/project/content.txt";file_put_contents($file_path , $contents); That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons : Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file. $contents = "All the content";$dir = '/var/www/project';$file_path = $dir . "/content.txt";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die("Directory $dir is not writable, or does not exist. Please check");} By doing this you get the accurate information that where is a file write failing and why 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are "accessible" outside. Otherwise for example the files may be created by "php" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on. // Read and write for owner, read for everybody elsechmod("/somedir/somefile", 0644);// Everything for owner, read and execute for otherschmod("/somedir/somefile", 0755); 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ //Save the things} The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this : if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ //Save the things} Now you are free from the value the submit button 16. Use static variables in function where they always have same value //Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} Instead use static variables as : //Delay for some timefunction delay(){ static $sync_delay = null; if($sync_delay == null) { $sync_delay = get_option('sync_delay'); } echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} 17. Don't use the $_SESSION variable directly Some simple examples are : $_SESSION['username'] = $username;$username = $_SESSION['username']; But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain. Hence use application specific keys with wrapper functions : define('APP_ID' , 'abc_corp_ecommerce');//Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}//Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;} 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like : function utility_a(){ //This function does a utility thing like string processing}function utility_b(){ //This function does nother utility thing like database processing}function utility_c(){ //This function is ...} And you use the function throughout your application freely. You may want to wrap them into a class as static functions : class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}//and call them as $a = Utility::utility_a();$b = Utility::utility_b(); One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else. 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++; Its absolutely a WASTE. Write if($a == true){ $a_count++;} Dont try to make your code shorter by eating up syntax. Rather make your logic shorter. Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this : foreach($arr as $c => $v){ $arr[$c] = trim($v);} But it can more cleaner with array_map : $arr = array_map('trim' , $arr); This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more. 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters. The php filter extension provides simple way to validate or check values as being a valid 'something'. 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate']; Its a good habit. 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded : $db_records_in_array_format; //This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; //2MB moresome_function($cc); //Another 2MB ? The above thing is common when importing a csv file or exporting table to a csv file Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays. Consider passing them by reference , or storing them in a class variable : $a = get_large_array();pass_to_function(&$a); by doing this the same variable (and not its copy) will be available to the function. Check documentation class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { //process $this->a }} unset them as soon as possible , so that memory is freed and rest of the script can relax. Here is a simple demonstration of how assign by reference can save memory in some cases <?phpini_set('display_errors' , true);error_reporting(E_ALL);$a = array();for($i = 0; $i < 100000 ; $i++){ $a[$i] = 'A'.$i;}echo 'Memory usage in MB : '. memory_get_usage() / 1000000 . '<br />';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() / 1000000 . '<br />';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() / 1000000 . '<br />';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() / 1000000 . '<br />'; The output on a typical php 5.4 machine is : Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more. 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this : function add_to_cart(){ $db = new Database(); $db->query("INSERT INTO cart .....");}function empty_cart(){ $db = new Database(); $db->query("DELETE FROM cart .....");} Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory. Use the singleton pattern for special cases like database connection. 26. Avoid direct SQL query , abstract it $query = "INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')";$db->query($query); //call to mysqli_query() The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like: All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries. A very simple example of an activerecord insert function can be like this : function insert_record($table_name , $data){ foreach($data as $key => $value) { //mysqli_real_escape_string $data[$key] = $db->mres($value); } $fields = implode(',' , array_keys($data)); $values = "'" . implode("','" , array_values($data)) . "'"; //Final query $query = "INSERT INTO {$table}($fields) VALUES($values)"; return $db->query($query);}//data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);//perform the INSERT queryinsert_record('users' , $data); The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse). This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise. 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again. Benefits : Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue. Storing session in database makes many other things easier like: Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example : <head> <base href="http://www.domain.com/store/"></head><body> <img src="/static/imghw/default1.png" data-src="happy.jpg" class="lazy" / alt="40+ Useful Php tips for beginners ? Part 1" ></body></html> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories. Lets take an example www.domain.com/store/home.php www.domain.com/store/products/ipad.php In home.php the following can be written : <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> But in ipad.php the links have to be like this : <a href="../home.php">Home</a><a href="ipad.php">Ipad</a> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag. <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products/ipad.php 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing. ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT); On production , the display should be disabled. ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark. After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set. ini_set('log_errors' , '1');ini_set('error_log' , '/path/to/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); Note : 1. The path '/path/to/errors.txt' should be writable by the web server for errors to be logged there. 2. A separate error file is specified , otherwise all logs would go inside the apache/web server error log and get mixed up with other apache errors. 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver). 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like /var/log dont have to searched. 5. Dont set error_reporting to 0. It will not log anything then. Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file. Set 'display_errors=On' in php.ini on development machine On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page. Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work. Set 'display_errors=Off' in php.ini on production machine Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away. 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results. On a 64 bit machine you can see such output. $ php -aInteractive shellphp > echo strtotime("0000-00-00 00:00:00");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600 But on a 32 bit machine all of them would give bool(false). Check here for more. What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines. 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this : set_time_limit(30);//Rest of the code It may not always work. Any execution that happens outside the script via system calls/os functions like socket operations, database operations etc. will not be under control of set_time_limit. So if a database operation takes lot of time or "hangs" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time. 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it. A better solution : /** Method to execute a command in the terminal Uses : 1. system 2. passthru 3. exec 4. shell_exec*/function terminal($command){ //system if(function_exists('system')) { ob_start(); system($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //passthru else if(function_exists('passthru')) { ob_start(); passthru($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //exec else if(function_exists('exec')) { exec($command , $output , $return_var); $output = implode("\n" , $output); } //shell_exec else if(function_exists('shell_exec')) { $output = shell_exec($command) ; } else { $output = 'Command execution not possible on this system'; $return_var = 1; } return array('output' => $output , 'status' => $return_var);}terminal('ls'); The above function will execute the shell command using whichever function is available , keeping your code consistent. 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user. 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise. Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind. 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily. Few popular libraries are : mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference. 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code. Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community. They contain user feedback, expert advice and useful code snippets. So check them out. 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!! 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc. The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more 1. Codeigniter 2. WordPress 3. Joomla CMS 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment. Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster. Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free. 本站聲明 本文內(nèi)容由網(wǎng)友自發(fā)貢獻,版權(quán)歸原作者所有,本站不承擔相應(yīng)法律責任。如您發(fā)現(xiàn)有涉嫌抄襲侵權(quán)的內(nèi)容,請聯(lián)系admin@php.cn 熱AI工具 Undress AI Tool 免費脫衣服圖片 Undresser.AI Undress 人工智能驅(qū)動的應(yīng)用程序,用于創(chuàng)建逼真的裸體照片 AI Clothes Remover 用于從照片中去除衣服的在線人工智能工具。 Clothoff.io AI脫衣機 Video Face Swap 使用我們完全免費的人工智能換臉工具輕松在任何視頻中換臉! 顯示更多 熱門文章 指南:恒星刀片保存文件位置/保存文件丟失/不保存 4 周前 By DDD Oguri Cap Build Guide |漂亮的德比志 2 周前 By Jack chen Agnes Tachyon Build Guide |漂亮的德比志 1 周前 By Jack chen 沙丘:覺醒 - 高級行星學家Quest演練 4 周前 By Jack chen 約會一切:德克和哈珀關(guān)系指南 4 周前 By Jack chen 顯示更多 熱工具 記事本++7.3.1 好用且免費的代碼編輯器 SublimeText3漢化版 中文版,非常好用 禪工作室 13.0.1 功能強大的PHP集成開發(fā)環(huán)境 Dreamweaver CS6 視覺化網(wǎng)頁開發(fā)工具 SublimeText3 Mac版 神級代碼編輯軟件(SublimeText3) 顯示更多 熱門話題 gmail郵箱登陸入口在哪里 8638 17 Java教程 1783 16 CakePHP 教程 1728 56 Laravel 教程 1578 28 PHP教程 1442 31 顯示更多 Related knowledge 如何在PHP中實施身份驗證和授權(quán)? Jun 20, 2025 am 01:03 AM tosecurelyhandleauthenticationandationallizationInphp,lofterTheSesteps:1.AlwaysHashPasswordSwithPassword_hash()andverifyusingspasspassword_verify(),usepreparedStatatementStopreventsqlineptions,andStoreSeruserDatain usseruserDatain $ _sessiveferterlogin.2.implementrole-2.imaccessccsccccccccccccccccccccccccc. 如何在PHP中安全地處理文件上傳? Jun 19, 2025 am 01:05 AM 要安全處理PHP中的文件上傳,核心在于驗證文件類型、重命名文件并限制權(quán)限。1.使用finfo_file()檢查真實MIME類型,僅允許特定類型如image/jpeg;2.用uniqid()生成隨機文件名,存儲至非Web根目錄;3.通過php.ini和HTML表單限制文件大小,設(shè)置目錄權(quán)限為0755;4.使用ClamAV掃描惡意軟件,增強安全性。這些步驟有效防止安全漏洞,確保文件上傳過程安全可靠。 PHP中==(松散比較)和===(嚴格的比較)之間有什么區(qū)別? Jun 19, 2025 am 01:07 AM 在PHP中,==與===的主要區(qū)別在于類型檢查的嚴格程度。==在比較前會進行類型轉(zhuǎn)換,例如5=="5"返回true,而===要求值和類型都相同才會返回true,例如5==="5"返回false。使用場景上,===更安全應(yīng)優(yōu)先使用,==僅在需要類型轉(zhuǎn)換時使用。 如何在PHP( - , *, /,%)中執(zhí)行算術(shù)操作? Jun 19, 2025 pm 05:13 PM PHP中使用基本數(shù)學運算的方法如下:1.加法用 號,支持整數(shù)和浮點數(shù),也可用于變量,字符串數(shù)字會自動轉(zhuǎn)換但不推薦依賴;2.減法用-號,變量同理,類型轉(zhuǎn)換同樣適用;3.乘法用*號,適用于數(shù)字及類似字符串;4.除法用/號,需避免除以零,并注意結(jié)果可能是浮點數(shù);5.取模用%號,可用于判斷奇偶數(shù),處理負數(shù)時余數(shù)符號與被除數(shù)一致。正確使用這些運算符的關(guān)鍵在于確保數(shù)據(jù)類型清晰并處理好邊界情況。 如何與PHP的NOSQL數(shù)據(jù)庫(例如MongoDB,Redis)進行交互? Jun 19, 2025 am 01:07 AM 是的,PHP可以通過特定擴展或庫與MongoDB和Redis等NoSQL數(shù)據(jù)庫交互。首先,使用MongoDBPHP驅(qū)動(通過PECL或Composer安裝)創(chuàng)建客戶端實例并操作數(shù)據(jù)庫及集合,支持插入、查詢、聚合等操作;其次,使用Predis庫或phpredis擴展連接Redis,執(zhí)行鍵值設(shè)置與獲取,推薦phpredis用于高性能場景,Predis則便于快速部署;兩者均適用于生產(chǎn)環(huán)境且文檔完善。 我如何了解最新的PHP開發(fā)和最佳實踐? Jun 23, 2025 am 12:56 AM TostaycurrentwithPHPdevelopmentsandbestpractices,followkeynewssourceslikePHP.netandPHPWeekly,engagewithcommunitiesonforumsandconferences,keeptoolingupdatedandgraduallyadoptnewfeatures,andreadorcontributetoopensourceprojects.First,followreliablesource 什么是PHP,為什么它用于Web開發(fā)? Jun 23, 2025 am 12:55 AM PHPbecamepopularforwebdevelopmentduetoitseaseoflearning,seamlessintegrationwithHTML,widespreadhostingsupport,andalargeecosystemincludingframeworkslikeLaravelandCMSplatformslikeWordPress.Itexcelsinhandlingformsubmissions,managingusersessions,interacti 如何設(shè)置PHP時區(qū)? Jun 25, 2025 am 01:00 AM tosetTherightTimeZoneInphp,restate_default_timezone_set()functionAtthestArtofyourscriptWithavalIdidentIdentifiersuchas'america/new_york'.1.usedate_default_default_timezone_set_set() See all articles
One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else.<\/p> 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this :
if($a == true) $a_count++;<\/pre> Its absolutely a WASTE.<\/p> Write<\/p> if($a == true){ $a_count++;}<\/pre> Dont try to make your code shorter by eating up syntax. Rather make your logic shorter.<\/p> Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this :<\/p> foreach($arr as $c => $v){\t$arr[$c] = trim($v);}<\/pre> But it can more cleaner with array_map :<\/p> $arr = array_map('trim' , $arr);<\/pre> This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more.<\/p> 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters.<\/p> The php filter extension provides simple way to validate or check values as being a valid 'something'.<\/p> 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate'];<\/pre> Its a good habit.<\/p> 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose<\/p> 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded :<\/p> $db_records_in_array_format; \/\/This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; \/\/2MB moresome_function($cc); \/\/Another 2MB ?<\/pre> The above thing is common when importing a csv file or exporting table to a csv file<\/p> Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays.<\/p> Consider passing them by reference , or storing them in a class variable :<\/p> $a = get_large_array();pass_to_function(&$a);<\/pre> by doing this the same variable (and not its copy) will be available to the function. Check documentation<\/p> class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { \/\/process $this->a }}<\/pre> unset them as soon as possible , so that memory is freed and rest of the script can relax.<\/p> Here is a simple demonstration of how assign by reference can save memory in some cases<\/p> ';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() \/ 1000000 . '';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() \/ 1000000 . '';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() \/ 1000000 . '';<\/pre> The output on a typical php 5.4 machine is :<\/p> Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 <\/p> So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more.<\/p> 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this :<\/p> function add_to_cart(){ $db = new Database(); $db->query(\"INSERT INTO cart .....\");}function empty_cart(){ $db = new Database(); $db->query(\"DELETE FROM cart .....\");}<\/pre> Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory.<\/p> Use the singleton pattern for special cases like database connection.<\/p> 26. Avoid direct SQL query , abstract it $query = \"INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')\";$db->query($query); \/\/call to mysqli_query()<\/pre> The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like:<\/p> All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord<\/p> It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries.<\/p> A very simple example of an activerecord insert function can be like this :<\/p> function insert_record($table_name , $data){ foreach($data as $key => $value) {\t\/\/mysqli_real_escape_string $data[$key] = $db->mres($value); }\t\t $fields = implode(',' , array_keys($data)); $values = \"'\" . implode(\"','\" , array_values($data)) . \"'\"; \/\/Final query\t $query = \"INSERT INTO {$table}($fields) VALUES($values)\";\t\t return $db->query($query);}\/\/data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);\/\/perform the INSERT queryinsert_record('users' , $data);<\/pre> The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse).<\/p> This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise.<\/p> 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again.<\/p> Benefits :<\/p> Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue.<\/p> Storing session in database makes many other things easier like:<\/p> Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines\/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example :<\/p> <\/head> <\/body><\/html><\/pre> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories.<\/p> Lets take an example<\/p> www.domain.com\/store\/home.php www.domain.com\/store\/products\/ipad.php<\/p> In home.php the following can be written :<\/p> Home<\/a>Ipad<\/a><\/pre> But in ipad.php the links have to be like this :<\/p> Home<\/a>Ipad<\/a><\/pre> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag.<\/p> <\/head>Home<\/a>Ipad<\/a><\/body><\/html><\/pre> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products\/ipad.php<\/p> 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing.<\/p> ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT);<\/pre> On production , the display should be disabled.<\/p> ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark.<\/p> After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set.<\/p> ini_set('log_errors' , '1');ini_set('error_log' , '\/path\/to\/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> Note :<\/p> 1. The path '\/path\/to\/errors.txt' should be writable by the web server for errors to be logged there.<\/p> 2. A separate error file is specified , otherwise all logs would go inside the apache\/web server error log and get mixed up with other apache errors.<\/p> 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver).<\/p> 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like \/var\/log dont have to searched.<\/p> 5. Dont set error_reporting to 0. It will not log anything then.<\/p> Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file.<\/p> Set 'display_errors=On' in php.ini on development machine<\/p> On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page.<\/p> Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work.<\/p> Set 'display_errors=Off' in php.ini on production machine<\/p> Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away.<\/p> 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results.<\/p> On a 64 bit machine you can see such output.<\/p> $ php -aInteractive shellphp > echo strtotime(\"0000-00-00 00:00:00\");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600<\/pre> But on a 32 bit machine all of them would give bool(false). Check here for more.<\/p> What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines.<\/p> 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this :<\/p> set_time_limit(30);\/\/Rest of the code<\/pre> It may not always work. Any execution that happens outside the script via system calls\/os functions like socket operations, database operations etc. will not be under control of set_time_limit.<\/p> So if a database operation takes lot of time or \"hangs\" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time.<\/p> 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it.<\/p> A better solution :<\/p> \/**\tMethod to execute a command in the terminal\tUses :\t1. system\t2. passthru\t3. exec\t4. shell_exec*\/function terminal($command){\t\/\/system\tif(function_exists('system'))\t{\t\tob_start();\t\tsystem($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/passthru\telse if(function_exists('passthru'))\t{\t\tob_start();\t\tpassthru($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/exec\telse if(function_exists('exec'))\t{\t\texec($command , $output , $return_var);\t\t$output = implode(\"\\n\" , $output);\t}\t\/\/shell_exec\telse if(function_exists('shell_exec'))\t{\t\t$output = shell_exec($command) ;\t}\telse\t{\t\t$output = 'Command execution not possible on this system';\t\t$return_var = 1;\t}\treturn array('output' => $output , 'status' => $return_var);}terminal('ls');<\/pre> The above function will execute the shell command using whichever function is available , keeping your code consistent.<\/p> 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user.<\/p> 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise.<\/p> Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind.<\/p> 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily.<\/p> Few popular libraries are :<\/p> mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference.<\/p> 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code.<\/p> Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community.<\/p> They contain user feedback, expert advice and useful code snippets. So check them out.<\/p> 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!!<\/p> 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc.<\/p> The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more<\/p> 1. Codeigniter 2. WordPress 3. Joomla CMS<\/p> 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment.<\/p> Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster.<\/p> Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free.<\/p> "} 社區(qū) 文章 合集 問答 學習 課程 編程詞典 工具庫 開發(fā)工具 網(wǎng)站源碼 PHP 庫 JS特效 網(wǎng)站素材 擴展插件 AI工具 休閑 游戲下載 游戲教程 簡體中文 簡體中文 English 繁體中文 日本語 ??? Melayu Fran?ais Deutsch Login singup 首頁 后端開發(fā) php教程 40+ Useful Php tips for beginners ? Part 1 40+ Useful Php tips for beginners ? Part 1 WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB Jun 23, 2016 pm 02:37 PM PHP學習指南 http://www.binarytides.com/category/php-2/tutorial/ In this series we are going to look into some useful tips and techniques that can be used to improve and optimise your php code. Note that these php tips are meant for beginners and not those who are already using mvc frameworks etc. The Techniques 1. Do not use relative paths , instead define a ROOT path Its quite common to see such lines : require_once('http://www.cnblogs.com/lib/some_class.php'); This approach has many drawbacks : It first searches for directories specified in the include paths of php , then looks from the current directory. So many directories are checked. When a script is included by another script in a different directory , its base directory changes to that of the including script. Another issue , is that when a script is being run from cron , it may not have its parent directory as the working directory. So its a good idea to have absolute paths : define('ROOT' , '/var/www/project/');require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code Now this is an absolute path and will always stay constant. But we can improve this further. The directory /var/www/project can change , so do we change it everytime ? No instead we make it portable using magic constants like __FILE__ . Take a closer look : //suppose your script is /var/www/project/index.php//Then __FILE__ will always have that full path.define('ROOT' , pathinfo(__FILE__, PATHINFO_DIRNAME));require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code So now even if you shift your project to a different directory , like moving it to an online server , the same code will run without any changes. 2. Dont use require , include , require_once or include_once Your script could be including various files on top , like class libraries , files for utility and helper functions etc like this : require_once('lib/Database.php');require_once('lib/Mail.php');require_once('helpers/utitlity_functions.php'); This is rather primitive. The code needs to be more flexible. Write up helper functions to include things more easily. Lets take an example : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); require_once( $path ); }load_class('Database');load_class('Mail'); See any difference ? You must. It does not need any more explanation. You can improve this further if you wish to like this : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); if(file_exists($path)) { require_once( $path ); }} There are a lot of things that can be done with this : Search multiple directories for the same class file. Change the directory containing class files easily , without breaking the code anywhere. Use similar functions for loading files that contain helper functions , html content etc. 3. Maintain debugging environment in your application During development we echo database queries , dump variables which are creating problems , and then once the problem is solved , we comment them or erase them. But its a good idea to let everything stay and help in the long run On your development machine you can do this : define('ENVIRONMENT' , 'development');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } And on the server you can do this : define('ENVIRONMENT' , 'production');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } 4. Propagate status messages via session Status messages are those messages that are generated after doing a task. <?phpif($wrong_username || $wrong_password){ $msg = 'Invalid username or password';}?><html><body><?php echo $msg; ?><form>...</form></body></html> Code like that is common. Using variables to show status messages has limitations. They cannot be send via redirects (unless you propagate them as GET variables to the next script , which is very silly). In large scripts there might be multiple messages etc. Best way is to use session to propagate them (even if on same page). For this there has to be a session_start on every page. function set_flash($msg){ $_SESSION['message'] = $msg;}function get_flash(){ $msg = $_SESSION['message']; unset($_SESSION['message']); return $msg;} and in your script : <?phpif($wrong_username || $wrong_password){ set_flash('Invalid username or password');}?><html><body>Status is : <?php echo get_flash(); ?><form>...</form></body></html> 5. Make your functions flexible function add_to_cart($item_id , $qty){ $_SESSION['cart'][$item_id] = $qty;}add_to_cart( 'IPHONE3' , 2 ); When adding a single item you use the above function. When adding multiple items , will you create another function ? NO. Just make the function flexible enough to take different kinds of parameters. Have a closer look : function add_to_cart($item_id , $qty){ if(!is_array($item_id)) { $_SESSION['cart'][$item_id] = $qty; } else { foreach($item_id as $i_id => $qty) { $_SESSION['cart'][$i_id] = $qty; } }}add_to_cart( 'IPHONE3' , 2 );add_to_cart( array('IPHONE3' => 2 , 'IPAD' => 5) ); So now the same function can accept different kinds of output. The above can be applied in lots of places to make your code more agile. 6. Omit the closing php tag if it is the last thing in a script I wonder why this tip is omitted from so many blog posts on php tips. <?phpecho "Hello";//Now dont close this tag This will save you lots of problem. Lets take an example : A class file super_class.php <?phpclass super_class{ function super_function() { //super code }}?>//super extra character after the closing tag Now index.php require_once('super_class.php');//echo an image or pdf , or set the cookies or session data And you will get Headers already send error. Why ? because the "super extra character" has been echoed , and all headers went along with that. Now you start debugging. You may have to waste many hours to find the super extra space. Hence make it a habit to omit the closing tag : <?phpclass super_class{ function super_function() { //super code }}//No closing tag Thats better. 7. Collect all output at one place , and output at one shot to the browser This is called output buffering. Lets say you have been echoing content from different functions like this : function print_header(){ echo "<div id='header'>Site Log and Login links</div>";}function print_footer(){ echo "<div id='footer'>Site was made by me</div>";}print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}print_footer(); Instead of doing like that , first collect all output in one place. You can either store it inside variables in the functions or use ob_start and ob_end_clean. So now it should look like function print_header(){ $o = "<div id='header'>Site Log and Login links</div>"; return $o;}function print_footer(){ $o = "<div id='footer'>Site was made by me</div>"; return $o;}echo print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}echo print_footer(); So why should you do output buffering : You can change the output just before sending it to browser if you need to. Think about doing some str_replaces , or may be preg_replaces or may be adding some extra html at the end like profiler/debugger output Its a bad idea to send output to browser and do php processing at the same time. Have you ever seen a website where there is a Fatal error in the sidebar or in a box in the middle of the screen. You know why that happens ? Because processing and output are being mixed. 8. Send correct mime types via header when outputting non-html content Lets echo some xml. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataecho $xml; Works fine. But it needs some improvement. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataheader("content-type: text/xml");echo $xml; Note that header line. That line tells the browser that the content is xml content. So the browser can handle it correctly. Many javascript libraries also rely on header information. Similarly for javascript , css , jpg image , png image : Javascript header("content-type: application/x-javascript");echo "var a = 10"; CSS header("content-type: text/css");echo "#div id { background:#000; }"; 9. Set the correct character encoding for a mysql connection Ever faced a problem that unicode/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation. $host = 'localhost';$username = 'root';$password = 'super_secret';//Attempt to connect to database$c = mysqli_connect($host , $username, $password); //Check connection validityif (!$c) { die ("Could not connect to the database host: <br />". mysqli_connect_error());} //Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){ die('mysqli_set_charset() failed');} Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application. Otherwise what will happen ? You will see lots of boxes and ???????? in non english text. 10. Use htmlentities with the correct characterset option Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc. $value = htmlentities($this->value , ENT_QUOTES , 'UTF-8'); Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual. 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php. Use apache mod_gzip/mod_deflate to compress content via the .htaccess file. 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php. $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= "'$image' ,";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;//Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,]; Be smart. use json_encode : $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;//Output is : var images = ["myself.png","friends.png","colleagues.png"] Isn't that neat ? 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of "debugging" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on. Make sure that your application is as intelligent as possible and reports the most important information in the shortest time. $contents = "All the content";$file_path = "/var/www/project/content.txt";file_put_contents($file_path , $contents); That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons : Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file. $contents = "All the content";$dir = '/var/www/project';$file_path = $dir . "/content.txt";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die("Directory $dir is not writable, or does not exist. Please check");} By doing this you get the accurate information that where is a file write failing and why 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are "accessible" outside. Otherwise for example the files may be created by "php" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on. // Read and write for owner, read for everybody elsechmod("/somedir/somefile", 0644);// Everything for owner, read and execute for otherschmod("/somedir/somefile", 0755); 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ //Save the things} The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this : if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ //Save the things} Now you are free from the value the submit button 16. Use static variables in function where they always have same value //Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} Instead use static variables as : //Delay for some timefunction delay(){ static $sync_delay = null; if($sync_delay == null) { $sync_delay = get_option('sync_delay'); } echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} 17. Don't use the $_SESSION variable directly Some simple examples are : $_SESSION['username'] = $username;$username = $_SESSION['username']; But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain. Hence use application specific keys with wrapper functions : define('APP_ID' , 'abc_corp_ecommerce');//Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}//Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;} 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like : function utility_a(){ //This function does a utility thing like string processing}function utility_b(){ //This function does nother utility thing like database processing}function utility_c(){ //This function is ...} And you use the function throughout your application freely. You may want to wrap them into a class as static functions : class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}//and call them as $a = Utility::utility_a();$b = Utility::utility_b(); One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else. 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++; Its absolutely a WASTE. Write if($a == true){ $a_count++;} Dont try to make your code shorter by eating up syntax. Rather make your logic shorter. Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this : foreach($arr as $c => $v){ $arr[$c] = trim($v);} But it can more cleaner with array_map : $arr = array_map('trim' , $arr); This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more. 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters. The php filter extension provides simple way to validate or check values as being a valid 'something'. 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate']; Its a good habit. 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded : $db_records_in_array_format; //This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; //2MB moresome_function($cc); //Another 2MB ? The above thing is common when importing a csv file or exporting table to a csv file Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays. Consider passing them by reference , or storing them in a class variable : $a = get_large_array();pass_to_function(&$a); by doing this the same variable (and not its copy) will be available to the function. Check documentation class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { //process $this->a }} unset them as soon as possible , so that memory is freed and rest of the script can relax. Here is a simple demonstration of how assign by reference can save memory in some cases <?phpini_set('display_errors' , true);error_reporting(E_ALL);$a = array();for($i = 0; $i < 100000 ; $i++){ $a[$i] = 'A'.$i;}echo 'Memory usage in MB : '. memory_get_usage() / 1000000 . '<br />';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() / 1000000 . '<br />';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() / 1000000 . '<br />';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() / 1000000 . '<br />'; The output on a typical php 5.4 machine is : Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more. 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this : function add_to_cart(){ $db = new Database(); $db->query("INSERT INTO cart .....");}function empty_cart(){ $db = new Database(); $db->query("DELETE FROM cart .....");} Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory. Use the singleton pattern for special cases like database connection. 26. Avoid direct SQL query , abstract it $query = "INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')";$db->query($query); //call to mysqli_query() The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like: All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries. A very simple example of an activerecord insert function can be like this : function insert_record($table_name , $data){ foreach($data as $key => $value) { //mysqli_real_escape_string $data[$key] = $db->mres($value); } $fields = implode(',' , array_keys($data)); $values = "'" . implode("','" , array_values($data)) . "'"; //Final query $query = "INSERT INTO {$table}($fields) VALUES($values)"; return $db->query($query);}//data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);//perform the INSERT queryinsert_record('users' , $data); The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse). This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise. 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again. Benefits : Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue. Storing session in database makes many other things easier like: Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example : <head> <base href="http://www.domain.com/store/"></head><body> <img src="/static/imghw/default1.png" data-src="happy.jpg" class="lazy" / alt="40+ Useful Php tips for beginners ? Part 1" ></body></html> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories. Lets take an example www.domain.com/store/home.php www.domain.com/store/products/ipad.php In home.php the following can be written : <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> But in ipad.php the links have to be like this : <a href="../home.php">Home</a><a href="ipad.php">Ipad</a> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag. <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products/ipad.php 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing. ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT); On production , the display should be disabled. ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark. After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set. ini_set('log_errors' , '1');ini_set('error_log' , '/path/to/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); Note : 1. The path '/path/to/errors.txt' should be writable by the web server for errors to be logged there. 2. A separate error file is specified , otherwise all logs would go inside the apache/web server error log and get mixed up with other apache errors. 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver). 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like /var/log dont have to searched. 5. Dont set error_reporting to 0. It will not log anything then. Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file. Set 'display_errors=On' in php.ini on development machine On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page. Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work. Set 'display_errors=Off' in php.ini on production machine Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away. 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results. On a 64 bit machine you can see such output. $ php -aInteractive shellphp > echo strtotime("0000-00-00 00:00:00");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600 But on a 32 bit machine all of them would give bool(false). Check here for more. What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines. 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this : set_time_limit(30);//Rest of the code It may not always work. Any execution that happens outside the script via system calls/os functions like socket operations, database operations etc. will not be under control of set_time_limit. So if a database operation takes lot of time or "hangs" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time. 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it. A better solution : /** Method to execute a command in the terminal Uses : 1. system 2. passthru 3. exec 4. shell_exec*/function terminal($command){ //system if(function_exists('system')) { ob_start(); system($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //passthru else if(function_exists('passthru')) { ob_start(); passthru($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //exec else if(function_exists('exec')) { exec($command , $output , $return_var); $output = implode("\n" , $output); } //shell_exec else if(function_exists('shell_exec')) { $output = shell_exec($command) ; } else { $output = 'Command execution not possible on this system'; $return_var = 1; } return array('output' => $output , 'status' => $return_var);}terminal('ls'); The above function will execute the shell command using whichever function is available , keeping your code consistent. 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user. 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise. Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind. 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily. Few popular libraries are : mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference. 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code. Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community. They contain user feedback, expert advice and useful code snippets. So check them out. 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!! 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc. The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more 1. Codeigniter 2. WordPress 3. Joomla CMS 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment. Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster. Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free. 本站聲明 本文內(nèi)容由網(wǎng)友自發(fā)貢獻,版權(quán)歸原作者所有,本站不承擔相應(yīng)法律責任。如您發(fā)現(xiàn)有涉嫌抄襲侵權(quán)的內(nèi)容,請聯(lián)系admin@php.cn 熱AI工具 Undress AI Tool 免費脫衣服圖片 Undresser.AI Undress 人工智能驅(qū)動的應(yīng)用程序,用于創(chuàng)建逼真的裸體照片 AI Clothes Remover 用于從照片中去除衣服的在線人工智能工具。 Clothoff.io AI脫衣機 Video Face Swap 使用我們完全免費的人工智能換臉工具輕松在任何視頻中換臉! 顯示更多 熱門文章 指南:恒星刀片保存文件位置/保存文件丟失/不保存 4 周前 By DDD Oguri Cap Build Guide |漂亮的德比志 2 周前 By Jack chen Agnes Tachyon Build Guide |漂亮的德比志 1 周前 By Jack chen 沙丘:覺醒 - 高級行星學家Quest演練 4 周前 By Jack chen 約會一切:德克和哈珀關(guān)系指南 4 周前 By Jack chen 顯示更多 熱工具 記事本++7.3.1 好用且免費的代碼編輯器 SublimeText3漢化版 中文版,非常好用 禪工作室 13.0.1 功能強大的PHP集成開發(fā)環(huán)境 Dreamweaver CS6 視覺化網(wǎng)頁開發(fā)工具 SublimeText3 Mac版 神級代碼編輯軟件(SublimeText3) 顯示更多 熱門話題 gmail郵箱登陸入口在哪里 8638 17 Java教程 1783 16 CakePHP 教程 1728 56 Laravel 教程 1578 28 PHP教程 1442 31 顯示更多 Related knowledge 如何在PHP中實施身份驗證和授權(quán)? Jun 20, 2025 am 01:03 AM tosecurelyhandleauthenticationandationallizationInphp,lofterTheSesteps:1.AlwaysHashPasswordSwithPassword_hash()andverifyusingspasspassword_verify(),usepreparedStatatementStopreventsqlineptions,andStoreSeruserDatain usseruserDatain $ _sessiveferterlogin.2.implementrole-2.imaccessccsccccccccccccccccccccccccc. 如何在PHP中安全地處理文件上傳? Jun 19, 2025 am 01:05 AM 要安全處理PHP中的文件上傳,核心在于驗證文件類型、重命名文件并限制權(quán)限。1.使用finfo_file()檢查真實MIME類型,僅允許特定類型如image/jpeg;2.用uniqid()生成隨機文件名,存儲至非Web根目錄;3.通過php.ini和HTML表單限制文件大小,設(shè)置目錄權(quán)限為0755;4.使用ClamAV掃描惡意軟件,增強安全性。這些步驟有效防止安全漏洞,確保文件上傳過程安全可靠。 PHP中==(松散比較)和===(嚴格的比較)之間有什么區(qū)別? Jun 19, 2025 am 01:07 AM 在PHP中,==與===的主要區(qū)別在于類型檢查的嚴格程度。==在比較前會進行類型轉(zhuǎn)換,例如5=="5"返回true,而===要求值和類型都相同才會返回true,例如5==="5"返回false。使用場景上,===更安全應(yīng)優(yōu)先使用,==僅在需要類型轉(zhuǎn)換時使用。 如何在PHP( - , *, /,%)中執(zhí)行算術(shù)操作? Jun 19, 2025 pm 05:13 PM PHP中使用基本數(shù)學運算的方法如下:1.加法用 號,支持整數(shù)和浮點數(shù),也可用于變量,字符串數(shù)字會自動轉(zhuǎn)換但不推薦依賴;2.減法用-號,變量同理,類型轉(zhuǎn)換同樣適用;3.乘法用*號,適用于數(shù)字及類似字符串;4.除法用/號,需避免除以零,并注意結(jié)果可能是浮點數(shù);5.取模用%號,可用于判斷奇偶數(shù),處理負數(shù)時余數(shù)符號與被除數(shù)一致。正確使用這些運算符的關(guān)鍵在于確保數(shù)據(jù)類型清晰并處理好邊界情況。 如何與PHP的NOSQL數(shù)據(jù)庫(例如MongoDB,Redis)進行交互? Jun 19, 2025 am 01:07 AM 是的,PHP可以通過特定擴展或庫與MongoDB和Redis等NoSQL數(shù)據(jù)庫交互。首先,使用MongoDBPHP驅(qū)動(通過PECL或Composer安裝)創(chuàng)建客戶端實例并操作數(shù)據(jù)庫及集合,支持插入、查詢、聚合等操作;其次,使用Predis庫或phpredis擴展連接Redis,執(zhí)行鍵值設(shè)置與獲取,推薦phpredis用于高性能場景,Predis則便于快速部署;兩者均適用于生產(chǎn)環(huán)境且文檔完善。 我如何了解最新的PHP開發(fā)和最佳實踐? Jun 23, 2025 am 12:56 AM TostaycurrentwithPHPdevelopmentsandbestpractices,followkeynewssourceslikePHP.netandPHPWeekly,engagewithcommunitiesonforumsandconferences,keeptoolingupdatedandgraduallyadoptnewfeatures,andreadorcontributetoopensourceprojects.First,followreliablesource 什么是PHP,為什么它用于Web開發(fā)? Jun 23, 2025 am 12:55 AM PHPbecamepopularforwebdevelopmentduetoitseaseoflearning,seamlessintegrationwithHTML,widespreadhostingsupport,andalargeecosystemincludingframeworkslikeLaravelandCMSplatformslikeWordPress.Itexcelsinhandlingformsubmissions,managingusersessions,interacti 如何設(shè)置PHP時區(qū)? Jun 25, 2025 am 01:00 AM tosetTherightTimeZoneInphp,restate_default_timezone_set()functionAtthestArtofyourscriptWithavalIdidentIdentifiersuchas'america/new_york'.1.usedate_default_default_timezone_set_set() See all articles
Its absolutely a WASTE.<\/p>
Write<\/p>
if($a == true){ $a_count++;}<\/pre> Dont try to make your code shorter by eating up syntax. Rather make your logic shorter.<\/p> Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this :<\/p> foreach($arr as $c => $v){\t$arr[$c] = trim($v);}<\/pre> But it can more cleaner with array_map :<\/p> $arr = array_map('trim' , $arr);<\/pre> This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more.<\/p> 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters.<\/p> The php filter extension provides simple way to validate or check values as being a valid 'something'.<\/p> 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate'];<\/pre> Its a good habit.<\/p> 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose<\/p> 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded :<\/p> $db_records_in_array_format; \/\/This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; \/\/2MB moresome_function($cc); \/\/Another 2MB ?<\/pre> The above thing is common when importing a csv file or exporting table to a csv file<\/p> Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays.<\/p> Consider passing them by reference , or storing them in a class variable :<\/p> $a = get_large_array();pass_to_function(&$a);<\/pre> by doing this the same variable (and not its copy) will be available to the function. Check documentation<\/p> class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { \/\/process $this->a }}<\/pre> unset them as soon as possible , so that memory is freed and rest of the script can relax.<\/p> Here is a simple demonstration of how assign by reference can save memory in some cases<\/p> ';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() \/ 1000000 . '';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() \/ 1000000 . '';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() \/ 1000000 . '';<\/pre> The output on a typical php 5.4 machine is :<\/p> Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 <\/p> So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more.<\/p> 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this :<\/p> function add_to_cart(){ $db = new Database(); $db->query(\"INSERT INTO cart .....\");}function empty_cart(){ $db = new Database(); $db->query(\"DELETE FROM cart .....\");}<\/pre> Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory.<\/p> Use the singleton pattern for special cases like database connection.<\/p> 26. Avoid direct SQL query , abstract it $query = \"INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')\";$db->query($query); \/\/call to mysqli_query()<\/pre> The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like:<\/p> All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord<\/p> It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries.<\/p> A very simple example of an activerecord insert function can be like this :<\/p> function insert_record($table_name , $data){ foreach($data as $key => $value) {\t\/\/mysqli_real_escape_string $data[$key] = $db->mres($value); }\t\t $fields = implode(',' , array_keys($data)); $values = \"'\" . implode(\"','\" , array_values($data)) . \"'\"; \/\/Final query\t $query = \"INSERT INTO {$table}($fields) VALUES($values)\";\t\t return $db->query($query);}\/\/data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);\/\/perform the INSERT queryinsert_record('users' , $data);<\/pre> The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse).<\/p> This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise.<\/p> 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again.<\/p> Benefits :<\/p> Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue.<\/p> Storing session in database makes many other things easier like:<\/p> Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines\/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example :<\/p> <\/head> <\/body><\/html><\/pre> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories.<\/p> Lets take an example<\/p> www.domain.com\/store\/home.php www.domain.com\/store\/products\/ipad.php<\/p> In home.php the following can be written :<\/p> Home<\/a>Ipad<\/a><\/pre> But in ipad.php the links have to be like this :<\/p> Home<\/a>Ipad<\/a><\/pre> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag.<\/p> <\/head>Home<\/a>Ipad<\/a><\/body><\/html><\/pre> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products\/ipad.php<\/p> 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing.<\/p> ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT);<\/pre> On production , the display should be disabled.<\/p> ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark.<\/p> After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set.<\/p> ini_set('log_errors' , '1');ini_set('error_log' , '\/path\/to\/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> Note :<\/p> 1. The path '\/path\/to\/errors.txt' should be writable by the web server for errors to be logged there.<\/p> 2. A separate error file is specified , otherwise all logs would go inside the apache\/web server error log and get mixed up with other apache errors.<\/p> 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver).<\/p> 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like \/var\/log dont have to searched.<\/p> 5. Dont set error_reporting to 0. It will not log anything then.<\/p> Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file.<\/p> Set 'display_errors=On' in php.ini on development machine<\/p> On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page.<\/p> Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work.<\/p> Set 'display_errors=Off' in php.ini on production machine<\/p> Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away.<\/p> 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results.<\/p> On a 64 bit machine you can see such output.<\/p> $ php -aInteractive shellphp > echo strtotime(\"0000-00-00 00:00:00\");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600<\/pre> But on a 32 bit machine all of them would give bool(false). Check here for more.<\/p> What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines.<\/p> 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this :<\/p> set_time_limit(30);\/\/Rest of the code<\/pre> It may not always work. Any execution that happens outside the script via system calls\/os functions like socket operations, database operations etc. will not be under control of set_time_limit.<\/p> So if a database operation takes lot of time or \"hangs\" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time.<\/p> 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it.<\/p> A better solution :<\/p> \/**\tMethod to execute a command in the terminal\tUses :\t1. system\t2. passthru\t3. exec\t4. shell_exec*\/function terminal($command){\t\/\/system\tif(function_exists('system'))\t{\t\tob_start();\t\tsystem($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/passthru\telse if(function_exists('passthru'))\t{\t\tob_start();\t\tpassthru($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/exec\telse if(function_exists('exec'))\t{\t\texec($command , $output , $return_var);\t\t$output = implode(\"\\n\" , $output);\t}\t\/\/shell_exec\telse if(function_exists('shell_exec'))\t{\t\t$output = shell_exec($command) ;\t}\telse\t{\t\t$output = 'Command execution not possible on this system';\t\t$return_var = 1;\t}\treturn array('output' => $output , 'status' => $return_var);}terminal('ls');<\/pre> The above function will execute the shell command using whichever function is available , keeping your code consistent.<\/p> 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user.<\/p> 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise.<\/p> Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind.<\/p> 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily.<\/p> Few popular libraries are :<\/p> mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference.<\/p> 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code.<\/p> Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community.<\/p> They contain user feedback, expert advice and useful code snippets. So check them out.<\/p> 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!!<\/p> 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc.<\/p> The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more<\/p> 1. Codeigniter 2. WordPress 3. Joomla CMS<\/p> 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment.<\/p> Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster.<\/p> Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free.<\/p> "} 社區(qū) 文章 合集 問答 學習 課程 編程詞典 工具庫 開發(fā)工具 網(wǎng)站源碼 PHP 庫 JS特效 網(wǎng)站素材 擴展插件 AI工具 休閑 游戲下載 游戲教程 簡體中文 簡體中文 English 繁體中文 日本語 ??? Melayu Fran?ais Deutsch Login singup 首頁 后端開發(fā) php教程 40+ Useful Php tips for beginners ? Part 1 40+ Useful Php tips for beginners ? Part 1 WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB Jun 23, 2016 pm 02:37 PM PHP學習指南 http://www.binarytides.com/category/php-2/tutorial/ In this series we are going to look into some useful tips and techniques that can be used to improve and optimise your php code. Note that these php tips are meant for beginners and not those who are already using mvc frameworks etc. The Techniques 1. Do not use relative paths , instead define a ROOT path Its quite common to see such lines : require_once('http://www.cnblogs.com/lib/some_class.php'); This approach has many drawbacks : It first searches for directories specified in the include paths of php , then looks from the current directory. So many directories are checked. When a script is included by another script in a different directory , its base directory changes to that of the including script. Another issue , is that when a script is being run from cron , it may not have its parent directory as the working directory. So its a good idea to have absolute paths : define('ROOT' , '/var/www/project/');require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code Now this is an absolute path and will always stay constant. But we can improve this further. The directory /var/www/project can change , so do we change it everytime ? No instead we make it portable using magic constants like __FILE__ . Take a closer look : //suppose your script is /var/www/project/index.php//Then __FILE__ will always have that full path.define('ROOT' , pathinfo(__FILE__, PATHINFO_DIRNAME));require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code So now even if you shift your project to a different directory , like moving it to an online server , the same code will run without any changes. 2. Dont use require , include , require_once or include_once Your script could be including various files on top , like class libraries , files for utility and helper functions etc like this : require_once('lib/Database.php');require_once('lib/Mail.php');require_once('helpers/utitlity_functions.php'); This is rather primitive. The code needs to be more flexible. Write up helper functions to include things more easily. Lets take an example : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); require_once( $path ); }load_class('Database');load_class('Mail'); See any difference ? You must. It does not need any more explanation. You can improve this further if you wish to like this : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); if(file_exists($path)) { require_once( $path ); }} There are a lot of things that can be done with this : Search multiple directories for the same class file. Change the directory containing class files easily , without breaking the code anywhere. Use similar functions for loading files that contain helper functions , html content etc. 3. Maintain debugging environment in your application During development we echo database queries , dump variables which are creating problems , and then once the problem is solved , we comment them or erase them. But its a good idea to let everything stay and help in the long run On your development machine you can do this : define('ENVIRONMENT' , 'development');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } And on the server you can do this : define('ENVIRONMENT' , 'production');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } 4. Propagate status messages via session Status messages are those messages that are generated after doing a task. <?phpif($wrong_username || $wrong_password){ $msg = 'Invalid username or password';}?><html><body><?php echo $msg; ?><form>...</form></body></html> Code like that is common. Using variables to show status messages has limitations. They cannot be send via redirects (unless you propagate them as GET variables to the next script , which is very silly). In large scripts there might be multiple messages etc. Best way is to use session to propagate them (even if on same page). For this there has to be a session_start on every page. function set_flash($msg){ $_SESSION['message'] = $msg;}function get_flash(){ $msg = $_SESSION['message']; unset($_SESSION['message']); return $msg;} and in your script : <?phpif($wrong_username || $wrong_password){ set_flash('Invalid username or password');}?><html><body>Status is : <?php echo get_flash(); ?><form>...</form></body></html> 5. Make your functions flexible function add_to_cart($item_id , $qty){ $_SESSION['cart'][$item_id] = $qty;}add_to_cart( 'IPHONE3' , 2 ); When adding a single item you use the above function. When adding multiple items , will you create another function ? NO. Just make the function flexible enough to take different kinds of parameters. Have a closer look : function add_to_cart($item_id , $qty){ if(!is_array($item_id)) { $_SESSION['cart'][$item_id] = $qty; } else { foreach($item_id as $i_id => $qty) { $_SESSION['cart'][$i_id] = $qty; } }}add_to_cart( 'IPHONE3' , 2 );add_to_cart( array('IPHONE3' => 2 , 'IPAD' => 5) ); So now the same function can accept different kinds of output. The above can be applied in lots of places to make your code more agile. 6. Omit the closing php tag if it is the last thing in a script I wonder why this tip is omitted from so many blog posts on php tips. <?phpecho "Hello";//Now dont close this tag This will save you lots of problem. Lets take an example : A class file super_class.php <?phpclass super_class{ function super_function() { //super code }}?>//super extra character after the closing tag Now index.php require_once('super_class.php');//echo an image or pdf , or set the cookies or session data And you will get Headers already send error. Why ? because the "super extra character" has been echoed , and all headers went along with that. Now you start debugging. You may have to waste many hours to find the super extra space. Hence make it a habit to omit the closing tag : <?phpclass super_class{ function super_function() { //super code }}//No closing tag Thats better. 7. Collect all output at one place , and output at one shot to the browser This is called output buffering. Lets say you have been echoing content from different functions like this : function print_header(){ echo "<div id='header'>Site Log and Login links</div>";}function print_footer(){ echo "<div id='footer'>Site was made by me</div>";}print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}print_footer(); Instead of doing like that , first collect all output in one place. You can either store it inside variables in the functions or use ob_start and ob_end_clean. So now it should look like function print_header(){ $o = "<div id='header'>Site Log and Login links</div>"; return $o;}function print_footer(){ $o = "<div id='footer'>Site was made by me</div>"; return $o;}echo print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}echo print_footer(); So why should you do output buffering : You can change the output just before sending it to browser if you need to. Think about doing some str_replaces , or may be preg_replaces or may be adding some extra html at the end like profiler/debugger output Its a bad idea to send output to browser and do php processing at the same time. Have you ever seen a website where there is a Fatal error in the sidebar or in a box in the middle of the screen. You know why that happens ? Because processing and output are being mixed. 8. Send correct mime types via header when outputting non-html content Lets echo some xml. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataecho $xml; Works fine. But it needs some improvement. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataheader("content-type: text/xml");echo $xml; Note that header line. That line tells the browser that the content is xml content. So the browser can handle it correctly. Many javascript libraries also rely on header information. Similarly for javascript , css , jpg image , png image : Javascript header("content-type: application/x-javascript");echo "var a = 10"; CSS header("content-type: text/css");echo "#div id { background:#000; }"; 9. Set the correct character encoding for a mysql connection Ever faced a problem that unicode/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation. $host = 'localhost';$username = 'root';$password = 'super_secret';//Attempt to connect to database$c = mysqli_connect($host , $username, $password); //Check connection validityif (!$c) { die ("Could not connect to the database host: <br />". mysqli_connect_error());} //Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){ die('mysqli_set_charset() failed');} Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application. Otherwise what will happen ? You will see lots of boxes and ???????? in non english text. 10. Use htmlentities with the correct characterset option Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc. $value = htmlentities($this->value , ENT_QUOTES , 'UTF-8'); Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual. 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php. Use apache mod_gzip/mod_deflate to compress content via the .htaccess file. 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php. $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= "'$image' ,";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;//Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,]; Be smart. use json_encode : $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;//Output is : var images = ["myself.png","friends.png","colleagues.png"] Isn't that neat ? 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of "debugging" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on. Make sure that your application is as intelligent as possible and reports the most important information in the shortest time. $contents = "All the content";$file_path = "/var/www/project/content.txt";file_put_contents($file_path , $contents); That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons : Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file. $contents = "All the content";$dir = '/var/www/project';$file_path = $dir . "/content.txt";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die("Directory $dir is not writable, or does not exist. Please check");} By doing this you get the accurate information that where is a file write failing and why 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are "accessible" outside. Otherwise for example the files may be created by "php" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on. // Read and write for owner, read for everybody elsechmod("/somedir/somefile", 0644);// Everything for owner, read and execute for otherschmod("/somedir/somefile", 0755); 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ //Save the things} The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this : if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ //Save the things} Now you are free from the value the submit button 16. Use static variables in function where they always have same value //Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} Instead use static variables as : //Delay for some timefunction delay(){ static $sync_delay = null; if($sync_delay == null) { $sync_delay = get_option('sync_delay'); } echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} 17. Don't use the $_SESSION variable directly Some simple examples are : $_SESSION['username'] = $username;$username = $_SESSION['username']; But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain. Hence use application specific keys with wrapper functions : define('APP_ID' , 'abc_corp_ecommerce');//Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}//Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;} 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like : function utility_a(){ //This function does a utility thing like string processing}function utility_b(){ //This function does nother utility thing like database processing}function utility_c(){ //This function is ...} And you use the function throughout your application freely. You may want to wrap them into a class as static functions : class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}//and call them as $a = Utility::utility_a();$b = Utility::utility_b(); One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else. 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++; Its absolutely a WASTE. Write if($a == true){ $a_count++;} Dont try to make your code shorter by eating up syntax. Rather make your logic shorter. Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this : foreach($arr as $c => $v){ $arr[$c] = trim($v);} But it can more cleaner with array_map : $arr = array_map('trim' , $arr); This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more. 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters. The php filter extension provides simple way to validate or check values as being a valid 'something'. 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate']; Its a good habit. 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded : $db_records_in_array_format; //This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; //2MB moresome_function($cc); //Another 2MB ? The above thing is common when importing a csv file or exporting table to a csv file Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays. Consider passing them by reference , or storing them in a class variable : $a = get_large_array();pass_to_function(&$a); by doing this the same variable (and not its copy) will be available to the function. Check documentation class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { //process $this->a }} unset them as soon as possible , so that memory is freed and rest of the script can relax. Here is a simple demonstration of how assign by reference can save memory in some cases <?phpini_set('display_errors' , true);error_reporting(E_ALL);$a = array();for($i = 0; $i < 100000 ; $i++){ $a[$i] = 'A'.$i;}echo 'Memory usage in MB : '. memory_get_usage() / 1000000 . '<br />';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() / 1000000 . '<br />';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() / 1000000 . '<br />';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() / 1000000 . '<br />'; The output on a typical php 5.4 machine is : Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more. 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this : function add_to_cart(){ $db = new Database(); $db->query("INSERT INTO cart .....");}function empty_cart(){ $db = new Database(); $db->query("DELETE FROM cart .....");} Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory. Use the singleton pattern for special cases like database connection. 26. Avoid direct SQL query , abstract it $query = "INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')";$db->query($query); //call to mysqli_query() The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like: All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries. A very simple example of an activerecord insert function can be like this : function insert_record($table_name , $data){ foreach($data as $key => $value) { //mysqli_real_escape_string $data[$key] = $db->mres($value); } $fields = implode(',' , array_keys($data)); $values = "'" . implode("','" , array_values($data)) . "'"; //Final query $query = "INSERT INTO {$table}($fields) VALUES($values)"; return $db->query($query);}//data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);//perform the INSERT queryinsert_record('users' , $data); The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse). This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise. 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again. Benefits : Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue. Storing session in database makes many other things easier like: Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example : <head> <base href="http://www.domain.com/store/"></head><body> <img src="/static/imghw/default1.png" data-src="happy.jpg" class="lazy" / alt="40+ Useful Php tips for beginners ? Part 1" ></body></html> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories. Lets take an example www.domain.com/store/home.php www.domain.com/store/products/ipad.php In home.php the following can be written : <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> But in ipad.php the links have to be like this : <a href="../home.php">Home</a><a href="ipad.php">Ipad</a> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag. <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products/ipad.php 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing. ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT); On production , the display should be disabled. ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark. After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set. ini_set('log_errors' , '1');ini_set('error_log' , '/path/to/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); Note : 1. The path '/path/to/errors.txt' should be writable by the web server for errors to be logged there. 2. A separate error file is specified , otherwise all logs would go inside the apache/web server error log and get mixed up with other apache errors. 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver). 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like /var/log dont have to searched. 5. Dont set error_reporting to 0. It will not log anything then. Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file. Set 'display_errors=On' in php.ini on development machine On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page. Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work. Set 'display_errors=Off' in php.ini on production machine Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away. 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results. On a 64 bit machine you can see such output. $ php -aInteractive shellphp > echo strtotime("0000-00-00 00:00:00");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600 But on a 32 bit machine all of them would give bool(false). Check here for more. What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines. 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this : set_time_limit(30);//Rest of the code It may not always work. Any execution that happens outside the script via system calls/os functions like socket operations, database operations etc. will not be under control of set_time_limit. So if a database operation takes lot of time or "hangs" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time. 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it. A better solution : /** Method to execute a command in the terminal Uses : 1. system 2. passthru 3. exec 4. shell_exec*/function terminal($command){ //system if(function_exists('system')) { ob_start(); system($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //passthru else if(function_exists('passthru')) { ob_start(); passthru($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //exec else if(function_exists('exec')) { exec($command , $output , $return_var); $output = implode("\n" , $output); } //shell_exec else if(function_exists('shell_exec')) { $output = shell_exec($command) ; } else { $output = 'Command execution not possible on this system'; $return_var = 1; } return array('output' => $output , 'status' => $return_var);}terminal('ls'); The above function will execute the shell command using whichever function is available , keeping your code consistent. 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user. 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise. Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind. 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily. Few popular libraries are : mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference. 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code. Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community. They contain user feedback, expert advice and useful code snippets. So check them out. 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!! 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc. The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more 1. Codeigniter 2. WordPress 3. Joomla CMS 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment. Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster. Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free. 本站聲明 本文內(nèi)容由網(wǎng)友自發(fā)貢獻,版權(quán)歸原作者所有,本站不承擔相應(yīng)法律責任。如您發(fā)現(xiàn)有涉嫌抄襲侵權(quán)的內(nèi)容,請聯(lián)系admin@php.cn 熱AI工具 Undress AI Tool 免費脫衣服圖片 Undresser.AI Undress 人工智能驅(qū)動的應(yīng)用程序,用于創(chuàng)建逼真的裸體照片 AI Clothes Remover 用于從照片中去除衣服的在線人工智能工具。 Clothoff.io AI脫衣機 Video Face Swap 使用我們完全免費的人工智能換臉工具輕松在任何視頻中換臉! 顯示更多 熱門文章 指南:恒星刀片保存文件位置/保存文件丟失/不保存 4 周前 By DDD Oguri Cap Build Guide |漂亮的德比志 2 周前 By Jack chen Agnes Tachyon Build Guide |漂亮的德比志 1 周前 By Jack chen 沙丘:覺醒 - 高級行星學家Quest演練 4 周前 By Jack chen 約會一切:德克和哈珀關(guān)系指南 4 周前 By Jack chen 顯示更多 熱工具 記事本++7.3.1 好用且免費的代碼編輯器 SublimeText3漢化版 中文版,非常好用 禪工作室 13.0.1 功能強大的PHP集成開發(fā)環(huán)境 Dreamweaver CS6 視覺化網(wǎng)頁開發(fā)工具 SublimeText3 Mac版 神級代碼編輯軟件(SublimeText3) 顯示更多 熱門話題 gmail郵箱登陸入口在哪里 8638 17 Java教程 1783 16 CakePHP 教程 1728 56 Laravel 教程 1578 28 PHP教程 1442 31 顯示更多 Related knowledge 如何在PHP中實施身份驗證和授權(quán)? Jun 20, 2025 am 01:03 AM tosecurelyhandleauthenticationandationallizationInphp,lofterTheSesteps:1.AlwaysHashPasswordSwithPassword_hash()andverifyusingspasspassword_verify(),usepreparedStatatementStopreventsqlineptions,andStoreSeruserDatain usseruserDatain $ _sessiveferterlogin.2.implementrole-2.imaccessccsccccccccccccccccccccccccc. 如何在PHP中安全地處理文件上傳? Jun 19, 2025 am 01:05 AM 要安全處理PHP中的文件上傳,核心在于驗證文件類型、重命名文件并限制權(quán)限。1.使用finfo_file()檢查真實MIME類型,僅允許特定類型如image/jpeg;2.用uniqid()生成隨機文件名,存儲至非Web根目錄;3.通過php.ini和HTML表單限制文件大小,設(shè)置目錄權(quán)限為0755;4.使用ClamAV掃描惡意軟件,增強安全性。這些步驟有效防止安全漏洞,確保文件上傳過程安全可靠。 PHP中==(松散比較)和===(嚴格的比較)之間有什么區(qū)別? Jun 19, 2025 am 01:07 AM 在PHP中,==與===的主要區(qū)別在于類型檢查的嚴格程度。==在比較前會進行類型轉(zhuǎn)換,例如5=="5"返回true,而===要求值和類型都相同才會返回true,例如5==="5"返回false。使用場景上,===更安全應(yīng)優(yōu)先使用,==僅在需要類型轉(zhuǎn)換時使用。 如何在PHP( - , *, /,%)中執(zhí)行算術(shù)操作? Jun 19, 2025 pm 05:13 PM PHP中使用基本數(shù)學運算的方法如下:1.加法用 號,支持整數(shù)和浮點數(shù),也可用于變量,字符串數(shù)字會自動轉(zhuǎn)換但不推薦依賴;2.減法用-號,變量同理,類型轉(zhuǎn)換同樣適用;3.乘法用*號,適用于數(shù)字及類似字符串;4.除法用/號,需避免除以零,并注意結(jié)果可能是浮點數(shù);5.取模用%號,可用于判斷奇偶數(shù),處理負數(shù)時余數(shù)符號與被除數(shù)一致。正確使用這些運算符的關(guān)鍵在于確保數(shù)據(jù)類型清晰并處理好邊界情況。 如何與PHP的NOSQL數(shù)據(jù)庫(例如MongoDB,Redis)進行交互? Jun 19, 2025 am 01:07 AM 是的,PHP可以通過特定擴展或庫與MongoDB和Redis等NoSQL數(shù)據(jù)庫交互。首先,使用MongoDBPHP驅(qū)動(通過PECL或Composer安裝)創(chuàng)建客戶端實例并操作數(shù)據(jù)庫及集合,支持插入、查詢、聚合等操作;其次,使用Predis庫或phpredis擴展連接Redis,執(zhí)行鍵值設(shè)置與獲取,推薦phpredis用于高性能場景,Predis則便于快速部署;兩者均適用于生產(chǎn)環(huán)境且文檔完善。 我如何了解最新的PHP開發(fā)和最佳實踐? Jun 23, 2025 am 12:56 AM TostaycurrentwithPHPdevelopmentsandbestpractices,followkeynewssourceslikePHP.netandPHPWeekly,engagewithcommunitiesonforumsandconferences,keeptoolingupdatedandgraduallyadoptnewfeatures,andreadorcontributetoopensourceprojects.First,followreliablesource 什么是PHP,為什么它用于Web開發(fā)? Jun 23, 2025 am 12:55 AM PHPbecamepopularforwebdevelopmentduetoitseaseoflearning,seamlessintegrationwithHTML,widespreadhostingsupport,andalargeecosystemincludingframeworkslikeLaravelandCMSplatformslikeWordPress.Itexcelsinhandlingformsubmissions,managingusersessions,interacti 如何設(shè)置PHP時區(qū)? Jun 25, 2025 am 01:00 AM tosetTherightTimeZoneInphp,restate_default_timezone_set()functionAtthestArtofyourscriptWithavalIdidentIdentifiersuchas'america/new_york'.1.usedate_default_default_timezone_set_set() See all articles
Dont try to make your code shorter by eating up syntax. Rather make your logic shorter.<\/p> Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map
Lets say you want to trim all elements of an array. Newbies do it like this :<\/p>
foreach($arr as $c => $v){\t$arr[$c] = trim($v);}<\/pre> But it can more cleaner with array_map :<\/p> $arr = array_map('trim' , $arr);<\/pre> This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more.<\/p> 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters.<\/p> The php filter extension provides simple way to validate or check values as being a valid 'something'.<\/p> 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate'];<\/pre> Its a good habit.<\/p> 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose<\/p> 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded :<\/p> $db_records_in_array_format; \/\/This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; \/\/2MB moresome_function($cc); \/\/Another 2MB ?<\/pre> The above thing is common when importing a csv file or exporting table to a csv file<\/p> Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays.<\/p> Consider passing them by reference , or storing them in a class variable :<\/p> $a = get_large_array();pass_to_function(&$a);<\/pre> by doing this the same variable (and not its copy) will be available to the function. Check documentation<\/p> class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { \/\/process $this->a }}<\/pre> unset them as soon as possible , so that memory is freed and rest of the script can relax.<\/p> Here is a simple demonstration of how assign by reference can save memory in some cases<\/p> ';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() \/ 1000000 . '';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() \/ 1000000 . '';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() \/ 1000000 . '';<\/pre> The output on a typical php 5.4 machine is :<\/p> Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 <\/p> So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more.<\/p> 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this :<\/p> function add_to_cart(){ $db = new Database(); $db->query(\"INSERT INTO cart .....\");}function empty_cart(){ $db = new Database(); $db->query(\"DELETE FROM cart .....\");}<\/pre> Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory.<\/p> Use the singleton pattern for special cases like database connection.<\/p> 26. Avoid direct SQL query , abstract it $query = \"INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')\";$db->query($query); \/\/call to mysqli_query()<\/pre> The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like:<\/p> All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord<\/p> It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries.<\/p> A very simple example of an activerecord insert function can be like this :<\/p> function insert_record($table_name , $data){ foreach($data as $key => $value) {\t\/\/mysqli_real_escape_string $data[$key] = $db->mres($value); }\t\t $fields = implode(',' , array_keys($data)); $values = \"'\" . implode(\"','\" , array_values($data)) . \"'\"; \/\/Final query\t $query = \"INSERT INTO {$table}($fields) VALUES($values)\";\t\t return $db->query($query);}\/\/data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);\/\/perform the INSERT queryinsert_record('users' , $data);<\/pre> The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse).<\/p> This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise.<\/p> 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again.<\/p> Benefits :<\/p> Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue.<\/p> Storing session in database makes many other things easier like:<\/p> Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines\/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example :<\/p> <\/head> <\/body><\/html><\/pre> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories.<\/p> Lets take an example<\/p> www.domain.com\/store\/home.php www.domain.com\/store\/products\/ipad.php<\/p> In home.php the following can be written :<\/p> Home<\/a>Ipad<\/a><\/pre> But in ipad.php the links have to be like this :<\/p> Home<\/a>Ipad<\/a><\/pre> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag.<\/p> <\/head>Home<\/a>Ipad<\/a><\/body><\/html><\/pre> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products\/ipad.php<\/p> 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing.<\/p> ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT);<\/pre> On production , the display should be disabled.<\/p> ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark.<\/p> After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set.<\/p> ini_set('log_errors' , '1');ini_set('error_log' , '\/path\/to\/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> Note :<\/p> 1. The path '\/path\/to\/errors.txt' should be writable by the web server for errors to be logged there.<\/p> 2. A separate error file is specified , otherwise all logs would go inside the apache\/web server error log and get mixed up with other apache errors.<\/p> 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver).<\/p> 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like \/var\/log dont have to searched.<\/p> 5. Dont set error_reporting to 0. It will not log anything then.<\/p> Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file.<\/p> Set 'display_errors=On' in php.ini on development machine<\/p> On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page.<\/p> Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work.<\/p> Set 'display_errors=Off' in php.ini on production machine<\/p> Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away.<\/p> 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results.<\/p> On a 64 bit machine you can see such output.<\/p> $ php -aInteractive shellphp > echo strtotime(\"0000-00-00 00:00:00\");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600<\/pre> But on a 32 bit machine all of them would give bool(false). Check here for more.<\/p> What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines.<\/p> 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this :<\/p> set_time_limit(30);\/\/Rest of the code<\/pre> It may not always work. Any execution that happens outside the script via system calls\/os functions like socket operations, database operations etc. will not be under control of set_time_limit.<\/p> So if a database operation takes lot of time or \"hangs\" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time.<\/p> 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it.<\/p> A better solution :<\/p> \/**\tMethod to execute a command in the terminal\tUses :\t1. system\t2. passthru\t3. exec\t4. shell_exec*\/function terminal($command){\t\/\/system\tif(function_exists('system'))\t{\t\tob_start();\t\tsystem($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/passthru\telse if(function_exists('passthru'))\t{\t\tob_start();\t\tpassthru($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/exec\telse if(function_exists('exec'))\t{\t\texec($command , $output , $return_var);\t\t$output = implode(\"\\n\" , $output);\t}\t\/\/shell_exec\telse if(function_exists('shell_exec'))\t{\t\t$output = shell_exec($command) ;\t}\telse\t{\t\t$output = 'Command execution not possible on this system';\t\t$return_var = 1;\t}\treturn array('output' => $output , 'status' => $return_var);}terminal('ls');<\/pre> The above function will execute the shell command using whichever function is available , keeping your code consistent.<\/p> 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user.<\/p> 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise.<\/p> Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind.<\/p> 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily.<\/p> Few popular libraries are :<\/p> mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference.<\/p> 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code.<\/p> Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community.<\/p> They contain user feedback, expert advice and useful code snippets. So check them out.<\/p> 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!!<\/p> 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc.<\/p> The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more<\/p> 1. Codeigniter 2. WordPress 3. Joomla CMS<\/p> 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment.<\/p> Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster.<\/p> Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free.<\/p> "} 社區(qū) 文章 合集 問答 學習 課程 編程詞典 工具庫 開發(fā)工具 網(wǎng)站源碼 PHP 庫 JS特效 網(wǎng)站素材 擴展插件 AI工具 休閑 游戲下載 游戲教程 簡體中文 簡體中文 English 繁體中文 日本語 ??? Melayu Fran?ais Deutsch Login singup 首頁 后端開發(fā) php教程 40+ Useful Php tips for beginners ? Part 1 40+ Useful Php tips for beginners ? Part 1 WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB Jun 23, 2016 pm 02:37 PM PHP學習指南 http://www.binarytides.com/category/php-2/tutorial/ In this series we are going to look into some useful tips and techniques that can be used to improve and optimise your php code. Note that these php tips are meant for beginners and not those who are already using mvc frameworks etc. The Techniques 1. Do not use relative paths , instead define a ROOT path Its quite common to see such lines : require_once('http://www.cnblogs.com/lib/some_class.php'); This approach has many drawbacks : It first searches for directories specified in the include paths of php , then looks from the current directory. So many directories are checked. When a script is included by another script in a different directory , its base directory changes to that of the including script. Another issue , is that when a script is being run from cron , it may not have its parent directory as the working directory. So its a good idea to have absolute paths : define('ROOT' , '/var/www/project/');require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code Now this is an absolute path and will always stay constant. But we can improve this further. The directory /var/www/project can change , so do we change it everytime ? No instead we make it portable using magic constants like __FILE__ . Take a closer look : //suppose your script is /var/www/project/index.php//Then __FILE__ will always have that full path.define('ROOT' , pathinfo(__FILE__, PATHINFO_DIRNAME));require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code So now even if you shift your project to a different directory , like moving it to an online server , the same code will run without any changes. 2. Dont use require , include , require_once or include_once Your script could be including various files on top , like class libraries , files for utility and helper functions etc like this : require_once('lib/Database.php');require_once('lib/Mail.php');require_once('helpers/utitlity_functions.php'); This is rather primitive. The code needs to be more flexible. Write up helper functions to include things more easily. Lets take an example : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); require_once( $path ); }load_class('Database');load_class('Mail'); See any difference ? You must. It does not need any more explanation. You can improve this further if you wish to like this : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); if(file_exists($path)) { require_once( $path ); }} There are a lot of things that can be done with this : Search multiple directories for the same class file. Change the directory containing class files easily , without breaking the code anywhere. Use similar functions for loading files that contain helper functions , html content etc. 3. Maintain debugging environment in your application During development we echo database queries , dump variables which are creating problems , and then once the problem is solved , we comment them or erase them. But its a good idea to let everything stay and help in the long run On your development machine you can do this : define('ENVIRONMENT' , 'development');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } And on the server you can do this : define('ENVIRONMENT' , 'production');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } 4. Propagate status messages via session Status messages are those messages that are generated after doing a task. <?phpif($wrong_username || $wrong_password){ $msg = 'Invalid username or password';}?><html><body><?php echo $msg; ?><form>...</form></body></html> Code like that is common. Using variables to show status messages has limitations. They cannot be send via redirects (unless you propagate them as GET variables to the next script , which is very silly). In large scripts there might be multiple messages etc. Best way is to use session to propagate them (even if on same page). For this there has to be a session_start on every page. function set_flash($msg){ $_SESSION['message'] = $msg;}function get_flash(){ $msg = $_SESSION['message']; unset($_SESSION['message']); return $msg;} and in your script : <?phpif($wrong_username || $wrong_password){ set_flash('Invalid username or password');}?><html><body>Status is : <?php echo get_flash(); ?><form>...</form></body></html> 5. Make your functions flexible function add_to_cart($item_id , $qty){ $_SESSION['cart'][$item_id] = $qty;}add_to_cart( 'IPHONE3' , 2 ); When adding a single item you use the above function. When adding multiple items , will you create another function ? NO. Just make the function flexible enough to take different kinds of parameters. Have a closer look : function add_to_cart($item_id , $qty){ if(!is_array($item_id)) { $_SESSION['cart'][$item_id] = $qty; } else { foreach($item_id as $i_id => $qty) { $_SESSION['cart'][$i_id] = $qty; } }}add_to_cart( 'IPHONE3' , 2 );add_to_cart( array('IPHONE3' => 2 , 'IPAD' => 5) ); So now the same function can accept different kinds of output. The above can be applied in lots of places to make your code more agile. 6. Omit the closing php tag if it is the last thing in a script I wonder why this tip is omitted from so many blog posts on php tips. <?phpecho "Hello";//Now dont close this tag This will save you lots of problem. Lets take an example : A class file super_class.php <?phpclass super_class{ function super_function() { //super code }}?>//super extra character after the closing tag Now index.php require_once('super_class.php');//echo an image or pdf , or set the cookies or session data And you will get Headers already send error. Why ? because the "super extra character" has been echoed , and all headers went along with that. Now you start debugging. You may have to waste many hours to find the super extra space. Hence make it a habit to omit the closing tag : <?phpclass super_class{ function super_function() { //super code }}//No closing tag Thats better. 7. Collect all output at one place , and output at one shot to the browser This is called output buffering. Lets say you have been echoing content from different functions like this : function print_header(){ echo "<div id='header'>Site Log and Login links</div>";}function print_footer(){ echo "<div id='footer'>Site was made by me</div>";}print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}print_footer(); Instead of doing like that , first collect all output in one place. You can either store it inside variables in the functions or use ob_start and ob_end_clean. So now it should look like function print_header(){ $o = "<div id='header'>Site Log and Login links</div>"; return $o;}function print_footer(){ $o = "<div id='footer'>Site was made by me</div>"; return $o;}echo print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}echo print_footer(); So why should you do output buffering : You can change the output just before sending it to browser if you need to. Think about doing some str_replaces , or may be preg_replaces or may be adding some extra html at the end like profiler/debugger output Its a bad idea to send output to browser and do php processing at the same time. Have you ever seen a website where there is a Fatal error in the sidebar or in a box in the middle of the screen. You know why that happens ? Because processing and output are being mixed. 8. Send correct mime types via header when outputting non-html content Lets echo some xml. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataecho $xml; Works fine. But it needs some improvement. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataheader("content-type: text/xml");echo $xml; Note that header line. That line tells the browser that the content is xml content. So the browser can handle it correctly. Many javascript libraries also rely on header information. Similarly for javascript , css , jpg image , png image : Javascript header("content-type: application/x-javascript");echo "var a = 10"; CSS header("content-type: text/css");echo "#div id { background:#000; }"; 9. Set the correct character encoding for a mysql connection Ever faced a problem that unicode/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation. $host = 'localhost';$username = 'root';$password = 'super_secret';//Attempt to connect to database$c = mysqli_connect($host , $username, $password); //Check connection validityif (!$c) { die ("Could not connect to the database host: <br />". mysqli_connect_error());} //Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){ die('mysqli_set_charset() failed');} Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application. Otherwise what will happen ? You will see lots of boxes and ???????? in non english text. 10. Use htmlentities with the correct characterset option Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc. $value = htmlentities($this->value , ENT_QUOTES , 'UTF-8'); Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual. 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php. Use apache mod_gzip/mod_deflate to compress content via the .htaccess file. 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php. $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= "'$image' ,";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;//Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,]; Be smart. use json_encode : $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;//Output is : var images = ["myself.png","friends.png","colleagues.png"] Isn't that neat ? 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of "debugging" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on. Make sure that your application is as intelligent as possible and reports the most important information in the shortest time. $contents = "All the content";$file_path = "/var/www/project/content.txt";file_put_contents($file_path , $contents); That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons : Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file. $contents = "All the content";$dir = '/var/www/project';$file_path = $dir . "/content.txt";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die("Directory $dir is not writable, or does not exist. Please check");} By doing this you get the accurate information that where is a file write failing and why 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are "accessible" outside. Otherwise for example the files may be created by "php" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on. // Read and write for owner, read for everybody elsechmod("/somedir/somefile", 0644);// Everything for owner, read and execute for otherschmod("/somedir/somefile", 0755); 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ //Save the things} The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this : if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ //Save the things} Now you are free from the value the submit button 16. Use static variables in function where they always have same value //Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} Instead use static variables as : //Delay for some timefunction delay(){ static $sync_delay = null; if($sync_delay == null) { $sync_delay = get_option('sync_delay'); } echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} 17. Don't use the $_SESSION variable directly Some simple examples are : $_SESSION['username'] = $username;$username = $_SESSION['username']; But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain. Hence use application specific keys with wrapper functions : define('APP_ID' , 'abc_corp_ecommerce');//Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}//Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;} 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like : function utility_a(){ //This function does a utility thing like string processing}function utility_b(){ //This function does nother utility thing like database processing}function utility_c(){ //This function is ...} And you use the function throughout your application freely. You may want to wrap them into a class as static functions : class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}//and call them as $a = Utility::utility_a();$b = Utility::utility_b(); One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else. 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++; Its absolutely a WASTE. Write if($a == true){ $a_count++;} Dont try to make your code shorter by eating up syntax. Rather make your logic shorter. Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this : foreach($arr as $c => $v){ $arr[$c] = trim($v);} But it can more cleaner with array_map : $arr = array_map('trim' , $arr); This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more. 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters. The php filter extension provides simple way to validate or check values as being a valid 'something'. 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate']; Its a good habit. 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded : $db_records_in_array_format; //This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; //2MB moresome_function($cc); //Another 2MB ? The above thing is common when importing a csv file or exporting table to a csv file Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays. Consider passing them by reference , or storing them in a class variable : $a = get_large_array();pass_to_function(&$a); by doing this the same variable (and not its copy) will be available to the function. Check documentation class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { //process $this->a }} unset them as soon as possible , so that memory is freed and rest of the script can relax. Here is a simple demonstration of how assign by reference can save memory in some cases <?phpini_set('display_errors' , true);error_reporting(E_ALL);$a = array();for($i = 0; $i < 100000 ; $i++){ $a[$i] = 'A'.$i;}echo 'Memory usage in MB : '. memory_get_usage() / 1000000 . '<br />';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() / 1000000 . '<br />';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() / 1000000 . '<br />';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() / 1000000 . '<br />'; The output on a typical php 5.4 machine is : Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more. 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this : function add_to_cart(){ $db = new Database(); $db->query("INSERT INTO cart .....");}function empty_cart(){ $db = new Database(); $db->query("DELETE FROM cart .....");} Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory. Use the singleton pattern for special cases like database connection. 26. Avoid direct SQL query , abstract it $query = "INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')";$db->query($query); //call to mysqli_query() The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like: All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries. A very simple example of an activerecord insert function can be like this : function insert_record($table_name , $data){ foreach($data as $key => $value) { //mysqli_real_escape_string $data[$key] = $db->mres($value); } $fields = implode(',' , array_keys($data)); $values = "'" . implode("','" , array_values($data)) . "'"; //Final query $query = "INSERT INTO {$table}($fields) VALUES($values)"; return $db->query($query);}//data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);//perform the INSERT queryinsert_record('users' , $data); The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse). This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise. 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again. Benefits : Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue. Storing session in database makes many other things easier like: Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example : <head> <base href="http://www.domain.com/store/"></head><body> <img src="/static/imghw/default1.png" data-src="happy.jpg" class="lazy" / alt="40+ Useful Php tips for beginners ? Part 1" ></body></html> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories. Lets take an example www.domain.com/store/home.php www.domain.com/store/products/ipad.php In home.php the following can be written : <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> But in ipad.php the links have to be like this : <a href="../home.php">Home</a><a href="ipad.php">Ipad</a> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag. <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products/ipad.php 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing. ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT); On production , the display should be disabled. ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark. After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set. ini_set('log_errors' , '1');ini_set('error_log' , '/path/to/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); Note : 1. The path '/path/to/errors.txt' should be writable by the web server for errors to be logged there. 2. A separate error file is specified , otherwise all logs would go inside the apache/web server error log and get mixed up with other apache errors. 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver). 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like /var/log dont have to searched. 5. Dont set error_reporting to 0. It will not log anything then. Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file. Set 'display_errors=On' in php.ini on development machine On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page. Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work. Set 'display_errors=Off' in php.ini on production machine Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away. 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results. On a 64 bit machine you can see such output. $ php -aInteractive shellphp > echo strtotime("0000-00-00 00:00:00");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600 But on a 32 bit machine all of them would give bool(false). Check here for more. What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines. 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this : set_time_limit(30);//Rest of the code It may not always work. Any execution that happens outside the script via system calls/os functions like socket operations, database operations etc. will not be under control of set_time_limit. So if a database operation takes lot of time or "hangs" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time. 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it. A better solution : /** Method to execute a command in the terminal Uses : 1. system 2. passthru 3. exec 4. shell_exec*/function terminal($command){ //system if(function_exists('system')) { ob_start(); system($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //passthru else if(function_exists('passthru')) { ob_start(); passthru($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //exec else if(function_exists('exec')) { exec($command , $output , $return_var); $output = implode("\n" , $output); } //shell_exec else if(function_exists('shell_exec')) { $output = shell_exec($command) ; } else { $output = 'Command execution not possible on this system'; $return_var = 1; } return array('output' => $output , 'status' => $return_var);}terminal('ls'); The above function will execute the shell command using whichever function is available , keeping your code consistent. 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user. 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise. Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind. 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily. Few popular libraries are : mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference. 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code. Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community. They contain user feedback, expert advice and useful code snippets. So check them out. 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!! 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc. The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more 1. Codeigniter 2. WordPress 3. Joomla CMS 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment. Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster. Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free. 本站聲明 本文內(nèi)容由網(wǎng)友自發(fā)貢獻,版權(quán)歸原作者所有,本站不承擔相應(yīng)法律責任。如您發(fā)現(xiàn)有涉嫌抄襲侵權(quán)的內(nèi)容,請聯(lián)系admin@php.cn 熱AI工具 Undress AI Tool 免費脫衣服圖片 Undresser.AI Undress 人工智能驅(qū)動的應(yīng)用程序,用于創(chuàng)建逼真的裸體照片 AI Clothes Remover 用于從照片中去除衣服的在線人工智能工具。 Clothoff.io AI脫衣機 Video Face Swap 使用我們完全免費的人工智能換臉工具輕松在任何視頻中換臉! 顯示更多 熱門文章 指南:恒星刀片保存文件位置/保存文件丟失/不保存 4 周前 By DDD Oguri Cap Build Guide |漂亮的德比志 2 周前 By Jack chen Agnes Tachyon Build Guide |漂亮的德比志 1 周前 By Jack chen 沙丘:覺醒 - 高級行星學家Quest演練 4 周前 By Jack chen 約會一切:德克和哈珀關(guān)系指南 4 周前 By Jack chen 顯示更多 熱工具 記事本++7.3.1 好用且免費的代碼編輯器 SublimeText3漢化版 中文版,非常好用 禪工作室 13.0.1 功能強大的PHP集成開發(fā)環(huán)境 Dreamweaver CS6 視覺化網(wǎng)頁開發(fā)工具 SublimeText3 Mac版 神級代碼編輯軟件(SublimeText3) 顯示更多 熱門話題 gmail郵箱登陸入口在哪里 8638 17 Java教程 1783 16 CakePHP 教程 1728 56 Laravel 教程 1578 28 PHP教程 1442 31 顯示更多 Related knowledge 如何在PHP中實施身份驗證和授權(quán)? Jun 20, 2025 am 01:03 AM tosecurelyhandleauthenticationandationallizationInphp,lofterTheSesteps:1.AlwaysHashPasswordSwithPassword_hash()andverifyusingspasspassword_verify(),usepreparedStatatementStopreventsqlineptions,andStoreSeruserDatain usseruserDatain $ _sessiveferterlogin.2.implementrole-2.imaccessccsccccccccccccccccccccccccc. 如何在PHP中安全地處理文件上傳? Jun 19, 2025 am 01:05 AM 要安全處理PHP中的文件上傳,核心在于驗證文件類型、重命名文件并限制權(quán)限。1.使用finfo_file()檢查真實MIME類型,僅允許特定類型如image/jpeg;2.用uniqid()生成隨機文件名,存儲至非Web根目錄;3.通過php.ini和HTML表單限制文件大小,設(shè)置目錄權(quán)限為0755;4.使用ClamAV掃描惡意軟件,增強安全性。這些步驟有效防止安全漏洞,確保文件上傳過程安全可靠。 PHP中==(松散比較)和===(嚴格的比較)之間有什么區(qū)別? Jun 19, 2025 am 01:07 AM 在PHP中,==與===的主要區(qū)別在于類型檢查的嚴格程度。==在比較前會進行類型轉(zhuǎn)換,例如5=="5"返回true,而===要求值和類型都相同才會返回true,例如5==="5"返回false。使用場景上,===更安全應(yīng)優(yōu)先使用,==僅在需要類型轉(zhuǎn)換時使用。 如何在PHP( - , *, /,%)中執(zhí)行算術(shù)操作? Jun 19, 2025 pm 05:13 PM PHP中使用基本數(shù)學運算的方法如下:1.加法用 號,支持整數(shù)和浮點數(shù),也可用于變量,字符串數(shù)字會自動轉(zhuǎn)換但不推薦依賴;2.減法用-號,變量同理,類型轉(zhuǎn)換同樣適用;3.乘法用*號,適用于數(shù)字及類似字符串;4.除法用/號,需避免除以零,并注意結(jié)果可能是浮點數(shù);5.取模用%號,可用于判斷奇偶數(shù),處理負數(shù)時余數(shù)符號與被除數(shù)一致。正確使用這些運算符的關(guān)鍵在于確保數(shù)據(jù)類型清晰并處理好邊界情況。 如何與PHP的NOSQL數(shù)據(jù)庫(例如MongoDB,Redis)進行交互? Jun 19, 2025 am 01:07 AM 是的,PHP可以通過特定擴展或庫與MongoDB和Redis等NoSQL數(shù)據(jù)庫交互。首先,使用MongoDBPHP驅(qū)動(通過PECL或Composer安裝)創(chuàng)建客戶端實例并操作數(shù)據(jù)庫及集合,支持插入、查詢、聚合等操作;其次,使用Predis庫或phpredis擴展連接Redis,執(zhí)行鍵值設(shè)置與獲取,推薦phpredis用于高性能場景,Predis則便于快速部署;兩者均適用于生產(chǎn)環(huán)境且文檔完善。 我如何了解最新的PHP開發(fā)和最佳實踐? Jun 23, 2025 am 12:56 AM TostaycurrentwithPHPdevelopmentsandbestpractices,followkeynewssourceslikePHP.netandPHPWeekly,engagewithcommunitiesonforumsandconferences,keeptoolingupdatedandgraduallyadoptnewfeatures,andreadorcontributetoopensourceprojects.First,followreliablesource 什么是PHP,為什么它用于Web開發(fā)? Jun 23, 2025 am 12:55 AM PHPbecamepopularforwebdevelopmentduetoitseaseoflearning,seamlessintegrationwithHTML,widespreadhostingsupport,andalargeecosystemincludingframeworkslikeLaravelandCMSplatformslikeWordPress.Itexcelsinhandlingformsubmissions,managingusersessions,interacti 如何設(shè)置PHP時區(qū)? Jun 25, 2025 am 01:00 AM tosetTherightTimeZoneInphp,restate_default_timezone_set()functionAtthestArtofyourscriptWithavalIdidentIdentifiersuchas'america/new_york'.1.usedate_default_default_timezone_set_set() See all articles
But it can more cleaner with array_map :<\/p>
$arr = array_map('trim' , $arr);<\/pre> This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more.<\/p> 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters.<\/p> The php filter extension provides simple way to validate or check values as being a valid 'something'.<\/p> 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate'];<\/pre> Its a good habit.<\/p> 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose<\/p> 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded :<\/p> $db_records_in_array_format; \/\/This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; \/\/2MB moresome_function($cc); \/\/Another 2MB ?<\/pre> The above thing is common when importing a csv file or exporting table to a csv file<\/p> Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays.<\/p> Consider passing them by reference , or storing them in a class variable :<\/p> $a = get_large_array();pass_to_function(&$a);<\/pre> by doing this the same variable (and not its copy) will be available to the function. Check documentation<\/p> class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { \/\/process $this->a }}<\/pre> unset them as soon as possible , so that memory is freed and rest of the script can relax.<\/p> Here is a simple demonstration of how assign by reference can save memory in some cases<\/p> ';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() \/ 1000000 . '';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() \/ 1000000 . '';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() \/ 1000000 . '';<\/pre> The output on a typical php 5.4 machine is :<\/p> Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 <\/p> So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more.<\/p> 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this :<\/p> function add_to_cart(){ $db = new Database(); $db->query(\"INSERT INTO cart .....\");}function empty_cart(){ $db = new Database(); $db->query(\"DELETE FROM cart .....\");}<\/pre> Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory.<\/p> Use the singleton pattern for special cases like database connection.<\/p> 26. Avoid direct SQL query , abstract it $query = \"INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')\";$db->query($query); \/\/call to mysqli_query()<\/pre> The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like:<\/p> All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord<\/p> It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries.<\/p> A very simple example of an activerecord insert function can be like this :<\/p> function insert_record($table_name , $data){ foreach($data as $key => $value) {\t\/\/mysqli_real_escape_string $data[$key] = $db->mres($value); }\t\t $fields = implode(',' , array_keys($data)); $values = \"'\" . implode(\"','\" , array_values($data)) . \"'\"; \/\/Final query\t $query = \"INSERT INTO {$table}($fields) VALUES($values)\";\t\t return $db->query($query);}\/\/data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);\/\/perform the INSERT queryinsert_record('users' , $data);<\/pre> The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse).<\/p> This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise.<\/p> 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again.<\/p> Benefits :<\/p> Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue.<\/p> Storing session in database makes many other things easier like:<\/p> Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines\/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example :<\/p> <\/head> <\/body><\/html><\/pre> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories.<\/p> Lets take an example<\/p> www.domain.com\/store\/home.php www.domain.com\/store\/products\/ipad.php<\/p> In home.php the following can be written :<\/p> Home<\/a>Ipad<\/a><\/pre> But in ipad.php the links have to be like this :<\/p> Home<\/a>Ipad<\/a><\/pre> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag.<\/p> <\/head>Home<\/a>Ipad<\/a><\/body><\/html><\/pre> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products\/ipad.php<\/p> 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing.<\/p> ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT);<\/pre> On production , the display should be disabled.<\/p> ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark.<\/p> After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set.<\/p> ini_set('log_errors' , '1');ini_set('error_log' , '\/path\/to\/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> Note :<\/p> 1. The path '\/path\/to\/errors.txt' should be writable by the web server for errors to be logged there.<\/p> 2. A separate error file is specified , otherwise all logs would go inside the apache\/web server error log and get mixed up with other apache errors.<\/p> 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver).<\/p> 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like \/var\/log dont have to searched.<\/p> 5. Dont set error_reporting to 0. It will not log anything then.<\/p> Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file.<\/p> Set 'display_errors=On' in php.ini on development machine<\/p> On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page.<\/p> Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work.<\/p> Set 'display_errors=Off' in php.ini on production machine<\/p> Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away.<\/p> 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results.<\/p> On a 64 bit machine you can see such output.<\/p> $ php -aInteractive shellphp > echo strtotime(\"0000-00-00 00:00:00\");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600<\/pre> But on a 32 bit machine all of them would give bool(false). Check here for more.<\/p> What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines.<\/p> 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this :<\/p> set_time_limit(30);\/\/Rest of the code<\/pre> It may not always work. Any execution that happens outside the script via system calls\/os functions like socket operations, database operations etc. will not be under control of set_time_limit.<\/p> So if a database operation takes lot of time or \"hangs\" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time.<\/p> 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it.<\/p> A better solution :<\/p> \/**\tMethod to execute a command in the terminal\tUses :\t1. system\t2. passthru\t3. exec\t4. shell_exec*\/function terminal($command){\t\/\/system\tif(function_exists('system'))\t{\t\tob_start();\t\tsystem($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/passthru\telse if(function_exists('passthru'))\t{\t\tob_start();\t\tpassthru($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/exec\telse if(function_exists('exec'))\t{\t\texec($command , $output , $return_var);\t\t$output = implode(\"\\n\" , $output);\t}\t\/\/shell_exec\telse if(function_exists('shell_exec'))\t{\t\t$output = shell_exec($command) ;\t}\telse\t{\t\t$output = 'Command execution not possible on this system';\t\t$return_var = 1;\t}\treturn array('output' => $output , 'status' => $return_var);}terminal('ls');<\/pre> The above function will execute the shell command using whichever function is available , keeping your code consistent.<\/p> 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user.<\/p> 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise.<\/p> Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind.<\/p> 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily.<\/p> Few popular libraries are :<\/p> mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference.<\/p> 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code.<\/p> Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community.<\/p> They contain user feedback, expert advice and useful code snippets. So check them out.<\/p> 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!!<\/p> 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc.<\/p> The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more<\/p> 1. Codeigniter 2. WordPress 3. Joomla CMS<\/p> 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment.<\/p> Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster.<\/p> Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free.<\/p> "} 社區(qū) 文章 合集 問答 學習 課程 編程詞典 工具庫 開發(fā)工具 網(wǎng)站源碼 PHP 庫 JS特效 網(wǎng)站素材 擴展插件 AI工具 休閑 游戲下載 游戲教程 簡體中文 簡體中文 English 繁體中文 日本語 ??? Melayu Fran?ais Deutsch Login singup 首頁 后端開發(fā) php教程 40+ Useful Php tips for beginners ? Part 1 40+ Useful Php tips for beginners ? Part 1 WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB Jun 23, 2016 pm 02:37 PM PHP學習指南 http://www.binarytides.com/category/php-2/tutorial/ In this series we are going to look into some useful tips and techniques that can be used to improve and optimise your php code. Note that these php tips are meant for beginners and not those who are already using mvc frameworks etc. The Techniques 1. Do not use relative paths , instead define a ROOT path Its quite common to see such lines : require_once('http://www.cnblogs.com/lib/some_class.php'); This approach has many drawbacks : It first searches for directories specified in the include paths of php , then looks from the current directory. So many directories are checked. When a script is included by another script in a different directory , its base directory changes to that of the including script. Another issue , is that when a script is being run from cron , it may not have its parent directory as the working directory. So its a good idea to have absolute paths : define('ROOT' , '/var/www/project/');require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code Now this is an absolute path and will always stay constant. But we can improve this further. The directory /var/www/project can change , so do we change it everytime ? No instead we make it portable using magic constants like __FILE__ . Take a closer look : //suppose your script is /var/www/project/index.php//Then __FILE__ will always have that full path.define('ROOT' , pathinfo(__FILE__, PATHINFO_DIRNAME));require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code So now even if you shift your project to a different directory , like moving it to an online server , the same code will run without any changes. 2. Dont use require , include , require_once or include_once Your script could be including various files on top , like class libraries , files for utility and helper functions etc like this : require_once('lib/Database.php');require_once('lib/Mail.php');require_once('helpers/utitlity_functions.php'); This is rather primitive. The code needs to be more flexible. Write up helper functions to include things more easily. Lets take an example : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); require_once( $path ); }load_class('Database');load_class('Mail'); See any difference ? You must. It does not need any more explanation. You can improve this further if you wish to like this : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); if(file_exists($path)) { require_once( $path ); }} There are a lot of things that can be done with this : Search multiple directories for the same class file. Change the directory containing class files easily , without breaking the code anywhere. Use similar functions for loading files that contain helper functions , html content etc. 3. Maintain debugging environment in your application During development we echo database queries , dump variables which are creating problems , and then once the problem is solved , we comment them or erase them. But its a good idea to let everything stay and help in the long run On your development machine you can do this : define('ENVIRONMENT' , 'development');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } And on the server you can do this : define('ENVIRONMENT' , 'production');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } 4. Propagate status messages via session Status messages are those messages that are generated after doing a task. <?phpif($wrong_username || $wrong_password){ $msg = 'Invalid username or password';}?><html><body><?php echo $msg; ?><form>...</form></body></html> Code like that is common. Using variables to show status messages has limitations. They cannot be send via redirects (unless you propagate them as GET variables to the next script , which is very silly). In large scripts there might be multiple messages etc. Best way is to use session to propagate them (even if on same page). For this there has to be a session_start on every page. function set_flash($msg){ $_SESSION['message'] = $msg;}function get_flash(){ $msg = $_SESSION['message']; unset($_SESSION['message']); return $msg;} and in your script : <?phpif($wrong_username || $wrong_password){ set_flash('Invalid username or password');}?><html><body>Status is : <?php echo get_flash(); ?><form>...</form></body></html> 5. Make your functions flexible function add_to_cart($item_id , $qty){ $_SESSION['cart'][$item_id] = $qty;}add_to_cart( 'IPHONE3' , 2 ); When adding a single item you use the above function. When adding multiple items , will you create another function ? NO. Just make the function flexible enough to take different kinds of parameters. Have a closer look : function add_to_cart($item_id , $qty){ if(!is_array($item_id)) { $_SESSION['cart'][$item_id] = $qty; } else { foreach($item_id as $i_id => $qty) { $_SESSION['cart'][$i_id] = $qty; } }}add_to_cart( 'IPHONE3' , 2 );add_to_cart( array('IPHONE3' => 2 , 'IPAD' => 5) ); So now the same function can accept different kinds of output. The above can be applied in lots of places to make your code more agile. 6. Omit the closing php tag if it is the last thing in a script I wonder why this tip is omitted from so many blog posts on php tips. <?phpecho "Hello";//Now dont close this tag This will save you lots of problem. Lets take an example : A class file super_class.php <?phpclass super_class{ function super_function() { //super code }}?>//super extra character after the closing tag Now index.php require_once('super_class.php');//echo an image or pdf , or set the cookies or session data And you will get Headers already send error. Why ? because the "super extra character" has been echoed , and all headers went along with that. Now you start debugging. You may have to waste many hours to find the super extra space. Hence make it a habit to omit the closing tag : <?phpclass super_class{ function super_function() { //super code }}//No closing tag Thats better. 7. Collect all output at one place , and output at one shot to the browser This is called output buffering. Lets say you have been echoing content from different functions like this : function print_header(){ echo "<div id='header'>Site Log and Login links</div>";}function print_footer(){ echo "<div id='footer'>Site was made by me</div>";}print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}print_footer(); Instead of doing like that , first collect all output in one place. You can either store it inside variables in the functions or use ob_start and ob_end_clean. So now it should look like function print_header(){ $o = "<div id='header'>Site Log and Login links</div>"; return $o;}function print_footer(){ $o = "<div id='footer'>Site was made by me</div>"; return $o;}echo print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}echo print_footer(); So why should you do output buffering : You can change the output just before sending it to browser if you need to. Think about doing some str_replaces , or may be preg_replaces or may be adding some extra html at the end like profiler/debugger output Its a bad idea to send output to browser and do php processing at the same time. Have you ever seen a website where there is a Fatal error in the sidebar or in a box in the middle of the screen. You know why that happens ? Because processing and output are being mixed. 8. Send correct mime types via header when outputting non-html content Lets echo some xml. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataecho $xml; Works fine. But it needs some improvement. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataheader("content-type: text/xml");echo $xml; Note that header line. That line tells the browser that the content is xml content. So the browser can handle it correctly. Many javascript libraries also rely on header information. Similarly for javascript , css , jpg image , png image : Javascript header("content-type: application/x-javascript");echo "var a = 10"; CSS header("content-type: text/css");echo "#div id { background:#000; }"; 9. Set the correct character encoding for a mysql connection Ever faced a problem that unicode/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation. $host = 'localhost';$username = 'root';$password = 'super_secret';//Attempt to connect to database$c = mysqli_connect($host , $username, $password); //Check connection validityif (!$c) { die ("Could not connect to the database host: <br />". mysqli_connect_error());} //Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){ die('mysqli_set_charset() failed');} Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application. Otherwise what will happen ? You will see lots of boxes and ???????? in non english text. 10. Use htmlentities with the correct characterset option Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc. $value = htmlentities($this->value , ENT_QUOTES , 'UTF-8'); Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual. 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php. Use apache mod_gzip/mod_deflate to compress content via the .htaccess file. 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php. $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= "'$image' ,";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;//Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,]; Be smart. use json_encode : $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;//Output is : var images = ["myself.png","friends.png","colleagues.png"] Isn't that neat ? 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of "debugging" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on. Make sure that your application is as intelligent as possible and reports the most important information in the shortest time. $contents = "All the content";$file_path = "/var/www/project/content.txt";file_put_contents($file_path , $contents); That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons : Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file. $contents = "All the content";$dir = '/var/www/project';$file_path = $dir . "/content.txt";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die("Directory $dir is not writable, or does not exist. Please check");} By doing this you get the accurate information that where is a file write failing and why 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are "accessible" outside. Otherwise for example the files may be created by "php" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on. // Read and write for owner, read for everybody elsechmod("/somedir/somefile", 0644);// Everything for owner, read and execute for otherschmod("/somedir/somefile", 0755); 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ //Save the things} The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this : if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ //Save the things} Now you are free from the value the submit button 16. Use static variables in function where they always have same value //Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} Instead use static variables as : //Delay for some timefunction delay(){ static $sync_delay = null; if($sync_delay == null) { $sync_delay = get_option('sync_delay'); } echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} 17. Don't use the $_SESSION variable directly Some simple examples are : $_SESSION['username'] = $username;$username = $_SESSION['username']; But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain. Hence use application specific keys with wrapper functions : define('APP_ID' , 'abc_corp_ecommerce');//Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}//Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;} 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like : function utility_a(){ //This function does a utility thing like string processing}function utility_b(){ //This function does nother utility thing like database processing}function utility_c(){ //This function is ...} And you use the function throughout your application freely. You may want to wrap them into a class as static functions : class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}//and call them as $a = Utility::utility_a();$b = Utility::utility_b(); One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else. 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++; Its absolutely a WASTE. Write if($a == true){ $a_count++;} Dont try to make your code shorter by eating up syntax. Rather make your logic shorter. Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this : foreach($arr as $c => $v){ $arr[$c] = trim($v);} But it can more cleaner with array_map : $arr = array_map('trim' , $arr); This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more. 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters. The php filter extension provides simple way to validate or check values as being a valid 'something'. 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate']; Its a good habit. 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded : $db_records_in_array_format; //This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; //2MB moresome_function($cc); //Another 2MB ? The above thing is common when importing a csv file or exporting table to a csv file Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays. Consider passing them by reference , or storing them in a class variable : $a = get_large_array();pass_to_function(&$a); by doing this the same variable (and not its copy) will be available to the function. Check documentation class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { //process $this->a }} unset them as soon as possible , so that memory is freed and rest of the script can relax. Here is a simple demonstration of how assign by reference can save memory in some cases <?phpini_set('display_errors' , true);error_reporting(E_ALL);$a = array();for($i = 0; $i < 100000 ; $i++){ $a[$i] = 'A'.$i;}echo 'Memory usage in MB : '. memory_get_usage() / 1000000 . '<br />';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() / 1000000 . '<br />';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() / 1000000 . '<br />';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() / 1000000 . '<br />'; The output on a typical php 5.4 machine is : Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more. 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this : function add_to_cart(){ $db = new Database(); $db->query("INSERT INTO cart .....");}function empty_cart(){ $db = new Database(); $db->query("DELETE FROM cart .....");} Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory. Use the singleton pattern for special cases like database connection. 26. Avoid direct SQL query , abstract it $query = "INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')";$db->query($query); //call to mysqli_query() The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like: All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries. A very simple example of an activerecord insert function can be like this : function insert_record($table_name , $data){ foreach($data as $key => $value) { //mysqli_real_escape_string $data[$key] = $db->mres($value); } $fields = implode(',' , array_keys($data)); $values = "'" . implode("','" , array_values($data)) . "'"; //Final query $query = "INSERT INTO {$table}($fields) VALUES($values)"; return $db->query($query);}//data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);//perform the INSERT queryinsert_record('users' , $data); The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse). This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise. 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again. Benefits : Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue. Storing session in database makes many other things easier like: Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example : <head> <base href="http://www.domain.com/store/"></head><body> <img src="/static/imghw/default1.png" data-src="happy.jpg" class="lazy" / alt="40+ Useful Php tips for beginners ? Part 1" ></body></html> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories. Lets take an example www.domain.com/store/home.php www.domain.com/store/products/ipad.php In home.php the following can be written : <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> But in ipad.php the links have to be like this : <a href="../home.php">Home</a><a href="ipad.php">Ipad</a> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag. <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products/ipad.php 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing. ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT); On production , the display should be disabled. ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark. After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set. ini_set('log_errors' , '1');ini_set('error_log' , '/path/to/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); Note : 1. The path '/path/to/errors.txt' should be writable by the web server for errors to be logged there. 2. A separate error file is specified , otherwise all logs would go inside the apache/web server error log and get mixed up with other apache errors. 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver). 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like /var/log dont have to searched. 5. Dont set error_reporting to 0. It will not log anything then. Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file. Set 'display_errors=On' in php.ini on development machine On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page. Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work. Set 'display_errors=Off' in php.ini on production machine Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away. 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results. On a 64 bit machine you can see such output. $ php -aInteractive shellphp > echo strtotime("0000-00-00 00:00:00");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600 But on a 32 bit machine all of them would give bool(false). Check here for more. What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines. 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this : set_time_limit(30);//Rest of the code It may not always work. Any execution that happens outside the script via system calls/os functions like socket operations, database operations etc. will not be under control of set_time_limit. So if a database operation takes lot of time or "hangs" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time. 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it. A better solution : /** Method to execute a command in the terminal Uses : 1. system 2. passthru 3. exec 4. shell_exec*/function terminal($command){ //system if(function_exists('system')) { ob_start(); system($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //passthru else if(function_exists('passthru')) { ob_start(); passthru($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //exec else if(function_exists('exec')) { exec($command , $output , $return_var); $output = implode("\n" , $output); } //shell_exec else if(function_exists('shell_exec')) { $output = shell_exec($command) ; } else { $output = 'Command execution not possible on this system'; $return_var = 1; } return array('output' => $output , 'status' => $return_var);}terminal('ls'); The above function will execute the shell command using whichever function is available , keeping your code consistent. 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user. 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise. Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind. 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily. Few popular libraries are : mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference. 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code. Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community. They contain user feedback, expert advice and useful code snippets. So check them out. 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!! 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc. The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more 1. Codeigniter 2. WordPress 3. Joomla CMS 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment. Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster. Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free. 本站聲明 本文內(nèi)容由網(wǎng)友自發(fā)貢獻,版權(quán)歸原作者所有,本站不承擔相應(yīng)法律責任。如您發(fā)現(xiàn)有涉嫌抄襲侵權(quán)的內(nèi)容,請聯(lián)系admin@php.cn 熱AI工具 Undress AI Tool 免費脫衣服圖片 Undresser.AI Undress 人工智能驅(qū)動的應(yīng)用程序,用于創(chuàng)建逼真的裸體照片 AI Clothes Remover 用于從照片中去除衣服的在線人工智能工具。 Clothoff.io AI脫衣機 Video Face Swap 使用我們完全免費的人工智能換臉工具輕松在任何視頻中換臉! 顯示更多 熱門文章 指南:恒星刀片保存文件位置/保存文件丟失/不保存 4 周前 By DDD Oguri Cap Build Guide |漂亮的德比志 2 周前 By Jack chen Agnes Tachyon Build Guide |漂亮的德比志 1 周前 By Jack chen 沙丘:覺醒 - 高級行星學家Quest演練 4 周前 By Jack chen 約會一切:德克和哈珀關(guān)系指南 4 周前 By Jack chen 顯示更多 熱工具 記事本++7.3.1 好用且免費的代碼編輯器 SublimeText3漢化版 中文版,非常好用 禪工作室 13.0.1 功能強大的PHP集成開發(fā)環(huán)境 Dreamweaver CS6 視覺化網(wǎng)頁開發(fā)工具 SublimeText3 Mac版 神級代碼編輯軟件(SublimeText3) 顯示更多 熱門話題 gmail郵箱登陸入口在哪里 8638 17 Java教程 1783 16 CakePHP 教程 1728 56 Laravel 教程 1578 28 PHP教程 1442 31 顯示更多 Related knowledge 如何在PHP中實施身份驗證和授權(quán)? Jun 20, 2025 am 01:03 AM tosecurelyhandleauthenticationandationallizationInphp,lofterTheSesteps:1.AlwaysHashPasswordSwithPassword_hash()andverifyusingspasspassword_verify(),usepreparedStatatementStopreventsqlineptions,andStoreSeruserDatain usseruserDatain $ _sessiveferterlogin.2.implementrole-2.imaccessccsccccccccccccccccccccccccc. 如何在PHP中安全地處理文件上傳? Jun 19, 2025 am 01:05 AM 要安全處理PHP中的文件上傳,核心在于驗證文件類型、重命名文件并限制權(quán)限。1.使用finfo_file()檢查真實MIME類型,僅允許特定類型如image/jpeg;2.用uniqid()生成隨機文件名,存儲至非Web根目錄;3.通過php.ini和HTML表單限制文件大小,設(shè)置目錄權(quán)限為0755;4.使用ClamAV掃描惡意軟件,增強安全性。這些步驟有效防止安全漏洞,確保文件上傳過程安全可靠。 PHP中==(松散比較)和===(嚴格的比較)之間有什么區(qū)別? Jun 19, 2025 am 01:07 AM 在PHP中,==與===的主要區(qū)別在于類型檢查的嚴格程度。==在比較前會進行類型轉(zhuǎn)換,例如5=="5"返回true,而===要求值和類型都相同才會返回true,例如5==="5"返回false。使用場景上,===更安全應(yīng)優(yōu)先使用,==僅在需要類型轉(zhuǎn)換時使用。 如何在PHP( - , *, /,%)中執(zhí)行算術(shù)操作? Jun 19, 2025 pm 05:13 PM PHP中使用基本數(shù)學運算的方法如下:1.加法用 號,支持整數(shù)和浮點數(shù),也可用于變量,字符串數(shù)字會自動轉(zhuǎn)換但不推薦依賴;2.減法用-號,變量同理,類型轉(zhuǎn)換同樣適用;3.乘法用*號,適用于數(shù)字及類似字符串;4.除法用/號,需避免除以零,并注意結(jié)果可能是浮點數(shù);5.取模用%號,可用于判斷奇偶數(shù),處理負數(shù)時余數(shù)符號與被除數(shù)一致。正確使用這些運算符的關(guān)鍵在于確保數(shù)據(jù)類型清晰并處理好邊界情況。 如何與PHP的NOSQL數(shù)據(jù)庫(例如MongoDB,Redis)進行交互? Jun 19, 2025 am 01:07 AM 是的,PHP可以通過特定擴展或庫與MongoDB和Redis等NoSQL數(shù)據(jù)庫交互。首先,使用MongoDBPHP驅(qū)動(通過PECL或Composer安裝)創(chuàng)建客戶端實例并操作數(shù)據(jù)庫及集合,支持插入、查詢、聚合等操作;其次,使用Predis庫或phpredis擴展連接Redis,執(zhí)行鍵值設(shè)置與獲取,推薦phpredis用于高性能場景,Predis則便于快速部署;兩者均適用于生產(chǎn)環(huán)境且文檔完善。 我如何了解最新的PHP開發(fā)和最佳實踐? Jun 23, 2025 am 12:56 AM TostaycurrentwithPHPdevelopmentsandbestpractices,followkeynewssourceslikePHP.netandPHPWeekly,engagewithcommunitiesonforumsandconferences,keeptoolingupdatedandgraduallyadoptnewfeatures,andreadorcontributetoopensourceprojects.First,followreliablesource 什么是PHP,為什么它用于Web開發(fā)? Jun 23, 2025 am 12:55 AM PHPbecamepopularforwebdevelopmentduetoitseaseoflearning,seamlessintegrationwithHTML,widespreadhostingsupport,andalargeecosystemincludingframeworkslikeLaravelandCMSplatformslikeWordPress.Itexcelsinhandlingformsubmissions,managingusersessions,interacti 如何設(shè)置PHP時區(qū)? Jun 25, 2025 am 01:00 AM tosetTherightTimeZoneInphp,restate_default_timezone_set()functionAtthestArtofyourscriptWithavalIdidentIdentifiersuchas'america/new_york'.1.usedate_default_default_timezone_set_set() See all articles
This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more.<\/p> 21. Validate data with php filters
Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters.<\/p>
The php filter extension provides simple way to validate or check values as being a valid 'something'.<\/p> 22. Force type checking
$amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate'];<\/pre> Its a good habit.<\/p> 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose<\/p> 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded :<\/p> $db_records_in_array_format; \/\/This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; \/\/2MB moresome_function($cc); \/\/Another 2MB ?<\/pre> The above thing is common when importing a csv file or exporting table to a csv file<\/p> Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays.<\/p> Consider passing them by reference , or storing them in a class variable :<\/p> $a = get_large_array();pass_to_function(&$a);<\/pre> by doing this the same variable (and not its copy) will be available to the function. Check documentation<\/p> class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { \/\/process $this->a }}<\/pre> unset them as soon as possible , so that memory is freed and rest of the script can relax.<\/p> Here is a simple demonstration of how assign by reference can save memory in some cases<\/p> ';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() \/ 1000000 . '';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() \/ 1000000 . '';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() \/ 1000000 . '';<\/pre> The output on a typical php 5.4 machine is :<\/p> Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 <\/p> So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more.<\/p> 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this :<\/p> function add_to_cart(){ $db = new Database(); $db->query(\"INSERT INTO cart .....\");}function empty_cart(){ $db = new Database(); $db->query(\"DELETE FROM cart .....\");}<\/pre> Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory.<\/p> Use the singleton pattern for special cases like database connection.<\/p> 26. Avoid direct SQL query , abstract it $query = \"INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')\";$db->query($query); \/\/call to mysqli_query()<\/pre> The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like:<\/p> All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord<\/p> It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries.<\/p> A very simple example of an activerecord insert function can be like this :<\/p> function insert_record($table_name , $data){ foreach($data as $key => $value) {\t\/\/mysqli_real_escape_string $data[$key] = $db->mres($value); }\t\t $fields = implode(',' , array_keys($data)); $values = \"'\" . implode(\"','\" , array_values($data)) . \"'\"; \/\/Final query\t $query = \"INSERT INTO {$table}($fields) VALUES($values)\";\t\t return $db->query($query);}\/\/data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);\/\/perform the INSERT queryinsert_record('users' , $data);<\/pre> The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse).<\/p> This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise.<\/p> 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again.<\/p> Benefits :<\/p> Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue.<\/p> Storing session in database makes many other things easier like:<\/p> Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines\/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example :<\/p> <\/head> <\/body><\/html><\/pre> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories.<\/p> Lets take an example<\/p> www.domain.com\/store\/home.php www.domain.com\/store\/products\/ipad.php<\/p> In home.php the following can be written :<\/p> Home<\/a>Ipad<\/a><\/pre> But in ipad.php the links have to be like this :<\/p> Home<\/a>Ipad<\/a><\/pre> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag.<\/p> <\/head>Home<\/a>Ipad<\/a><\/body><\/html><\/pre> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products\/ipad.php<\/p> 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing.<\/p> ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT);<\/pre> On production , the display should be disabled.<\/p> ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark.<\/p> After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set.<\/p> ini_set('log_errors' , '1');ini_set('error_log' , '\/path\/to\/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> Note :<\/p> 1. The path '\/path\/to\/errors.txt' should be writable by the web server for errors to be logged there.<\/p> 2. A separate error file is specified , otherwise all logs would go inside the apache\/web server error log and get mixed up with other apache errors.<\/p> 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver).<\/p> 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like \/var\/log dont have to searched.<\/p> 5. Dont set error_reporting to 0. It will not log anything then.<\/p> Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file.<\/p> Set 'display_errors=On' in php.ini on development machine<\/p> On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page.<\/p> Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work.<\/p> Set 'display_errors=Off' in php.ini on production machine<\/p> Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away.<\/p> 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results.<\/p> On a 64 bit machine you can see such output.<\/p> $ php -aInteractive shellphp > echo strtotime(\"0000-00-00 00:00:00\");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600<\/pre> But on a 32 bit machine all of them would give bool(false). Check here for more.<\/p> What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines.<\/p> 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this :<\/p> set_time_limit(30);\/\/Rest of the code<\/pre> It may not always work. Any execution that happens outside the script via system calls\/os functions like socket operations, database operations etc. will not be under control of set_time_limit.<\/p> So if a database operation takes lot of time or \"hangs\" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time.<\/p> 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it.<\/p> A better solution :<\/p> \/**\tMethod to execute a command in the terminal\tUses :\t1. system\t2. passthru\t3. exec\t4. shell_exec*\/function terminal($command){\t\/\/system\tif(function_exists('system'))\t{\t\tob_start();\t\tsystem($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/passthru\telse if(function_exists('passthru'))\t{\t\tob_start();\t\tpassthru($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/exec\telse if(function_exists('exec'))\t{\t\texec($command , $output , $return_var);\t\t$output = implode(\"\\n\" , $output);\t}\t\/\/shell_exec\telse if(function_exists('shell_exec'))\t{\t\t$output = shell_exec($command) ;\t}\telse\t{\t\t$output = 'Command execution not possible on this system';\t\t$return_var = 1;\t}\treturn array('output' => $output , 'status' => $return_var);}terminal('ls');<\/pre> The above function will execute the shell command using whichever function is available , keeping your code consistent.<\/p> 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user.<\/p> 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise.<\/p> Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind.<\/p> 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily.<\/p> Few popular libraries are :<\/p> mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference.<\/p> 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code.<\/p> Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community.<\/p> They contain user feedback, expert advice and useful code snippets. So check them out.<\/p> 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!!<\/p> 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc.<\/p> The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more<\/p> 1. Codeigniter 2. WordPress 3. Joomla CMS<\/p> 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment.<\/p> Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster.<\/p> Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free.<\/p> "} 社區(qū) 文章 合集 問答 學習 課程 編程詞典 工具庫 開發(fā)工具 網(wǎng)站源碼 PHP 庫 JS特效 網(wǎng)站素材 擴展插件 AI工具 休閑 游戲下載 游戲教程 簡體中文 簡體中文 English 繁體中文 日本語 ??? Melayu Fran?ais Deutsch Login singup 首頁 后端開發(fā) php教程 40+ Useful Php tips for beginners ? Part 1 40+ Useful Php tips for beginners ? Part 1 WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB Jun 23, 2016 pm 02:37 PM PHP學習指南 http://www.binarytides.com/category/php-2/tutorial/ In this series we are going to look into some useful tips and techniques that can be used to improve and optimise your php code. Note that these php tips are meant for beginners and not those who are already using mvc frameworks etc. The Techniques 1. Do not use relative paths , instead define a ROOT path Its quite common to see such lines : require_once('http://www.cnblogs.com/lib/some_class.php'); This approach has many drawbacks : It first searches for directories specified in the include paths of php , then looks from the current directory. So many directories are checked. When a script is included by another script in a different directory , its base directory changes to that of the including script. Another issue , is that when a script is being run from cron , it may not have its parent directory as the working directory. So its a good idea to have absolute paths : define('ROOT' , '/var/www/project/');require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code Now this is an absolute path and will always stay constant. But we can improve this further. The directory /var/www/project can change , so do we change it everytime ? No instead we make it portable using magic constants like __FILE__ . Take a closer look : //suppose your script is /var/www/project/index.php//Then __FILE__ will always have that full path.define('ROOT' , pathinfo(__FILE__, PATHINFO_DIRNAME));require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code So now even if you shift your project to a different directory , like moving it to an online server , the same code will run without any changes. 2. Dont use require , include , require_once or include_once Your script could be including various files on top , like class libraries , files for utility and helper functions etc like this : require_once('lib/Database.php');require_once('lib/Mail.php');require_once('helpers/utitlity_functions.php'); This is rather primitive. The code needs to be more flexible. Write up helper functions to include things more easily. Lets take an example : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); require_once( $path ); }load_class('Database');load_class('Mail'); See any difference ? You must. It does not need any more explanation. You can improve this further if you wish to like this : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); if(file_exists($path)) { require_once( $path ); }} There are a lot of things that can be done with this : Search multiple directories for the same class file. Change the directory containing class files easily , without breaking the code anywhere. Use similar functions for loading files that contain helper functions , html content etc. 3. Maintain debugging environment in your application During development we echo database queries , dump variables which are creating problems , and then once the problem is solved , we comment them or erase them. But its a good idea to let everything stay and help in the long run On your development machine you can do this : define('ENVIRONMENT' , 'development');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } And on the server you can do this : define('ENVIRONMENT' , 'production');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } 4. Propagate status messages via session Status messages are those messages that are generated after doing a task. <?phpif($wrong_username || $wrong_password){ $msg = 'Invalid username or password';}?><html><body><?php echo $msg; ?><form>...</form></body></html> Code like that is common. Using variables to show status messages has limitations. They cannot be send via redirects (unless you propagate them as GET variables to the next script , which is very silly). In large scripts there might be multiple messages etc. Best way is to use session to propagate them (even if on same page). For this there has to be a session_start on every page. function set_flash($msg){ $_SESSION['message'] = $msg;}function get_flash(){ $msg = $_SESSION['message']; unset($_SESSION['message']); return $msg;} and in your script : <?phpif($wrong_username || $wrong_password){ set_flash('Invalid username or password');}?><html><body>Status is : <?php echo get_flash(); ?><form>...</form></body></html> 5. Make your functions flexible function add_to_cart($item_id , $qty){ $_SESSION['cart'][$item_id] = $qty;}add_to_cart( 'IPHONE3' , 2 ); When adding a single item you use the above function. When adding multiple items , will you create another function ? NO. Just make the function flexible enough to take different kinds of parameters. Have a closer look : function add_to_cart($item_id , $qty){ if(!is_array($item_id)) { $_SESSION['cart'][$item_id] = $qty; } else { foreach($item_id as $i_id => $qty) { $_SESSION['cart'][$i_id] = $qty; } }}add_to_cart( 'IPHONE3' , 2 );add_to_cart( array('IPHONE3' => 2 , 'IPAD' => 5) ); So now the same function can accept different kinds of output. The above can be applied in lots of places to make your code more agile. 6. Omit the closing php tag if it is the last thing in a script I wonder why this tip is omitted from so many blog posts on php tips. <?phpecho "Hello";//Now dont close this tag This will save you lots of problem. Lets take an example : A class file super_class.php <?phpclass super_class{ function super_function() { //super code }}?>//super extra character after the closing tag Now index.php require_once('super_class.php');//echo an image or pdf , or set the cookies or session data And you will get Headers already send error. Why ? because the "super extra character" has been echoed , and all headers went along with that. Now you start debugging. You may have to waste many hours to find the super extra space. Hence make it a habit to omit the closing tag : <?phpclass super_class{ function super_function() { //super code }}//No closing tag Thats better. 7. Collect all output at one place , and output at one shot to the browser This is called output buffering. Lets say you have been echoing content from different functions like this : function print_header(){ echo "<div id='header'>Site Log and Login links</div>";}function print_footer(){ echo "<div id='footer'>Site was made by me</div>";}print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}print_footer(); Instead of doing like that , first collect all output in one place. You can either store it inside variables in the functions or use ob_start and ob_end_clean. So now it should look like function print_header(){ $o = "<div id='header'>Site Log and Login links</div>"; return $o;}function print_footer(){ $o = "<div id='footer'>Site was made by me</div>"; return $o;}echo print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}echo print_footer(); So why should you do output buffering : You can change the output just before sending it to browser if you need to. Think about doing some str_replaces , or may be preg_replaces or may be adding some extra html at the end like profiler/debugger output Its a bad idea to send output to browser and do php processing at the same time. Have you ever seen a website where there is a Fatal error in the sidebar or in a box in the middle of the screen. You know why that happens ? Because processing and output are being mixed. 8. Send correct mime types via header when outputting non-html content Lets echo some xml. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataecho $xml; Works fine. But it needs some improvement. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataheader("content-type: text/xml");echo $xml; Note that header line. That line tells the browser that the content is xml content. So the browser can handle it correctly. Many javascript libraries also rely on header information. Similarly for javascript , css , jpg image , png image : Javascript header("content-type: application/x-javascript");echo "var a = 10"; CSS header("content-type: text/css");echo "#div id { background:#000; }"; 9. Set the correct character encoding for a mysql connection Ever faced a problem that unicode/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation. $host = 'localhost';$username = 'root';$password = 'super_secret';//Attempt to connect to database$c = mysqli_connect($host , $username, $password); //Check connection validityif (!$c) { die ("Could not connect to the database host: <br />". mysqli_connect_error());} //Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){ die('mysqli_set_charset() failed');} Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application. Otherwise what will happen ? You will see lots of boxes and ???????? in non english text. 10. Use htmlentities with the correct characterset option Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc. $value = htmlentities($this->value , ENT_QUOTES , 'UTF-8'); Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual. 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php. Use apache mod_gzip/mod_deflate to compress content via the .htaccess file. 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php. $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= "'$image' ,";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;//Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,]; Be smart. use json_encode : $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;//Output is : var images = ["myself.png","friends.png","colleagues.png"] Isn't that neat ? 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of "debugging" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on. Make sure that your application is as intelligent as possible and reports the most important information in the shortest time. $contents = "All the content";$file_path = "/var/www/project/content.txt";file_put_contents($file_path , $contents); That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons : Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file. $contents = "All the content";$dir = '/var/www/project';$file_path = $dir . "/content.txt";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die("Directory $dir is not writable, or does not exist. Please check");} By doing this you get the accurate information that where is a file write failing and why 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are "accessible" outside. Otherwise for example the files may be created by "php" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on. // Read and write for owner, read for everybody elsechmod("/somedir/somefile", 0644);// Everything for owner, read and execute for otherschmod("/somedir/somefile", 0755); 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ //Save the things} The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this : if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ //Save the things} Now you are free from the value the submit button 16. Use static variables in function where they always have same value //Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} Instead use static variables as : //Delay for some timefunction delay(){ static $sync_delay = null; if($sync_delay == null) { $sync_delay = get_option('sync_delay'); } echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} 17. Don't use the $_SESSION variable directly Some simple examples are : $_SESSION['username'] = $username;$username = $_SESSION['username']; But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain. Hence use application specific keys with wrapper functions : define('APP_ID' , 'abc_corp_ecommerce');//Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}//Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;} 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like : function utility_a(){ //This function does a utility thing like string processing}function utility_b(){ //This function does nother utility thing like database processing}function utility_c(){ //This function is ...} And you use the function throughout your application freely. You may want to wrap them into a class as static functions : class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}//and call them as $a = Utility::utility_a();$b = Utility::utility_b(); One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else. 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++; Its absolutely a WASTE. Write if($a == true){ $a_count++;} Dont try to make your code shorter by eating up syntax. Rather make your logic shorter. Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this : foreach($arr as $c => $v){ $arr[$c] = trim($v);} But it can more cleaner with array_map : $arr = array_map('trim' , $arr); This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more. 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters. The php filter extension provides simple way to validate or check values as being a valid 'something'. 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate']; Its a good habit. 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded : $db_records_in_array_format; //This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; //2MB moresome_function($cc); //Another 2MB ? The above thing is common when importing a csv file or exporting table to a csv file Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays. Consider passing them by reference , or storing them in a class variable : $a = get_large_array();pass_to_function(&$a); by doing this the same variable (and not its copy) will be available to the function. Check documentation class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { //process $this->a }} unset them as soon as possible , so that memory is freed and rest of the script can relax. Here is a simple demonstration of how assign by reference can save memory in some cases <?phpini_set('display_errors' , true);error_reporting(E_ALL);$a = array();for($i = 0; $i < 100000 ; $i++){ $a[$i] = 'A'.$i;}echo 'Memory usage in MB : '. memory_get_usage() / 1000000 . '<br />';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() / 1000000 . '<br />';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() / 1000000 . '<br />';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() / 1000000 . '<br />'; The output on a typical php 5.4 machine is : Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more. 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this : function add_to_cart(){ $db = new Database(); $db->query("INSERT INTO cart .....");}function empty_cart(){ $db = new Database(); $db->query("DELETE FROM cart .....");} Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory. Use the singleton pattern for special cases like database connection. 26. Avoid direct SQL query , abstract it $query = "INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')";$db->query($query); //call to mysqli_query() The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like: All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries. A very simple example of an activerecord insert function can be like this : function insert_record($table_name , $data){ foreach($data as $key => $value) { //mysqli_real_escape_string $data[$key] = $db->mres($value); } $fields = implode(',' , array_keys($data)); $values = "'" . implode("','" , array_values($data)) . "'"; //Final query $query = "INSERT INTO {$table}($fields) VALUES($values)"; return $db->query($query);}//data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);//perform the INSERT queryinsert_record('users' , $data); The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse). This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise. 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again. Benefits : Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue. Storing session in database makes many other things easier like: Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example : <head> <base href="http://www.domain.com/store/"></head><body> <img src="/static/imghw/default1.png" data-src="happy.jpg" class="lazy" / alt="40+ Useful Php tips for beginners ? Part 1" ></body></html> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories. Lets take an example www.domain.com/store/home.php www.domain.com/store/products/ipad.php In home.php the following can be written : <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> But in ipad.php the links have to be like this : <a href="../home.php">Home</a><a href="ipad.php">Ipad</a> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag. <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products/ipad.php 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing. ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT); On production , the display should be disabled. ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark. After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set. ini_set('log_errors' , '1');ini_set('error_log' , '/path/to/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); Note : 1. The path '/path/to/errors.txt' should be writable by the web server for errors to be logged there. 2. A separate error file is specified , otherwise all logs would go inside the apache/web server error log and get mixed up with other apache errors. 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver). 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like /var/log dont have to searched. 5. Dont set error_reporting to 0. It will not log anything then. Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file. Set 'display_errors=On' in php.ini on development machine On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page. Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work. Set 'display_errors=Off' in php.ini on production machine Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away. 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results. On a 64 bit machine you can see such output. $ php -aInteractive shellphp > echo strtotime("0000-00-00 00:00:00");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600 But on a 32 bit machine all of them would give bool(false). Check here for more. What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines. 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this : set_time_limit(30);//Rest of the code It may not always work. Any execution that happens outside the script via system calls/os functions like socket operations, database operations etc. will not be under control of set_time_limit. So if a database operation takes lot of time or "hangs" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time. 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it. A better solution : /** Method to execute a command in the terminal Uses : 1. system 2. passthru 3. exec 4. shell_exec*/function terminal($command){ //system if(function_exists('system')) { ob_start(); system($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //passthru else if(function_exists('passthru')) { ob_start(); passthru($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //exec else if(function_exists('exec')) { exec($command , $output , $return_var); $output = implode("\n" , $output); } //shell_exec else if(function_exists('shell_exec')) { $output = shell_exec($command) ; } else { $output = 'Command execution not possible on this system'; $return_var = 1; } return array('output' => $output , 'status' => $return_var);}terminal('ls'); The above function will execute the shell command using whichever function is available , keeping your code consistent. 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user. 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise. Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind. 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily. Few popular libraries are : mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference. 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code. Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community. They contain user feedback, expert advice and useful code snippets. So check them out. 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!! 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc. The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more 1. Codeigniter 2. WordPress 3. Joomla CMS 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment. Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster. Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free. 本站聲明 本文內(nèi)容由網(wǎng)友自發(fā)貢獻,版權(quán)歸原作者所有,本站不承擔相應(yīng)法律責任。如您發(fā)現(xiàn)有涉嫌抄襲侵權(quán)的內(nèi)容,請聯(lián)系admin@php.cn 熱AI工具 Undress AI Tool 免費脫衣服圖片 Undresser.AI Undress 人工智能驅(qū)動的應(yīng)用程序,用于創(chuàng)建逼真的裸體照片 AI Clothes Remover 用于從照片中去除衣服的在線人工智能工具。 Clothoff.io AI脫衣機 Video Face Swap 使用我們完全免費的人工智能換臉工具輕松在任何視頻中換臉! 顯示更多 熱門文章 指南:恒星刀片保存文件位置/保存文件丟失/不保存 4 周前 By DDD Oguri Cap Build Guide |漂亮的德比志 2 周前 By Jack chen Agnes Tachyon Build Guide |漂亮的德比志 1 周前 By Jack chen 沙丘:覺醒 - 高級行星學家Quest演練 4 周前 By Jack chen 約會一切:德克和哈珀關(guān)系指南 4 周前 By Jack chen 顯示更多 熱工具 記事本++7.3.1 好用且免費的代碼編輯器 SublimeText3漢化版 中文版,非常好用 禪工作室 13.0.1 功能強大的PHP集成開發(fā)環(huán)境 Dreamweaver CS6 視覺化網(wǎng)頁開發(fā)工具 SublimeText3 Mac版 神級代碼編輯軟件(SublimeText3) 顯示更多 熱門話題 gmail郵箱登陸入口在哪里 8638 17 Java教程 1783 16 CakePHP 教程 1728 56 Laravel 教程 1578 28 PHP教程 1442 31 顯示更多 Related knowledge 如何在PHP中實施身份驗證和授權(quán)? Jun 20, 2025 am 01:03 AM tosecurelyhandleauthenticationandationallizationInphp,lofterTheSesteps:1.AlwaysHashPasswordSwithPassword_hash()andverifyusingspasspassword_verify(),usepreparedStatatementStopreventsqlineptions,andStoreSeruserDatain usseruserDatain $ _sessiveferterlogin.2.implementrole-2.imaccessccsccccccccccccccccccccccccc. 如何在PHP中安全地處理文件上傳? Jun 19, 2025 am 01:05 AM 要安全處理PHP中的文件上傳,核心在于驗證文件類型、重命名文件并限制權(quán)限。1.使用finfo_file()檢查真實MIME類型,僅允許特定類型如image/jpeg;2.用uniqid()生成隨機文件名,存儲至非Web根目錄;3.通過php.ini和HTML表單限制文件大小,設(shè)置目錄權(quán)限為0755;4.使用ClamAV掃描惡意軟件,增強安全性。這些步驟有效防止安全漏洞,確保文件上傳過程安全可靠。 PHP中==(松散比較)和===(嚴格的比較)之間有什么區(qū)別? Jun 19, 2025 am 01:07 AM 在PHP中,==與===的主要區(qū)別在于類型檢查的嚴格程度。==在比較前會進行類型轉(zhuǎn)換,例如5=="5"返回true,而===要求值和類型都相同才會返回true,例如5==="5"返回false。使用場景上,===更安全應(yīng)優(yōu)先使用,==僅在需要類型轉(zhuǎn)換時使用。 如何在PHP( - , *, /,%)中執(zhí)行算術(shù)操作? Jun 19, 2025 pm 05:13 PM PHP中使用基本數(shù)學運算的方法如下:1.加法用 號,支持整數(shù)和浮點數(shù),也可用于變量,字符串數(shù)字會自動轉(zhuǎn)換但不推薦依賴;2.減法用-號,變量同理,類型轉(zhuǎn)換同樣適用;3.乘法用*號,適用于數(shù)字及類似字符串;4.除法用/號,需避免除以零,并注意結(jié)果可能是浮點數(shù);5.取模用%號,可用于判斷奇偶數(shù),處理負數(shù)時余數(shù)符號與被除數(shù)一致。正確使用這些運算符的關(guān)鍵在于確保數(shù)據(jù)類型清晰并處理好邊界情況。 如何與PHP的NOSQL數(shù)據(jù)庫(例如MongoDB,Redis)進行交互? Jun 19, 2025 am 01:07 AM 是的,PHP可以通過特定擴展或庫與MongoDB和Redis等NoSQL數(shù)據(jù)庫交互。首先,使用MongoDBPHP驅(qū)動(通過PECL或Composer安裝)創(chuàng)建客戶端實例并操作數(shù)據(jù)庫及集合,支持插入、查詢、聚合等操作;其次,使用Predis庫或phpredis擴展連接Redis,執(zhí)行鍵值設(shè)置與獲取,推薦phpredis用于高性能場景,Predis則便于快速部署;兩者均適用于生產(chǎn)環(huán)境且文檔完善。 我如何了解最新的PHP開發(fā)和最佳實踐? Jun 23, 2025 am 12:56 AM TostaycurrentwithPHPdevelopmentsandbestpractices,followkeynewssourceslikePHP.netandPHPWeekly,engagewithcommunitiesonforumsandconferences,keeptoolingupdatedandgraduallyadoptnewfeatures,andreadorcontributetoopensourceprojects.First,followreliablesource 什么是PHP,為什么它用于Web開發(fā)? Jun 23, 2025 am 12:55 AM PHPbecamepopularforwebdevelopmentduetoitseaseoflearning,seamlessintegrationwithHTML,widespreadhostingsupport,andalargeecosystemincludingframeworkslikeLaravelandCMSplatformslikeWordPress.Itexcelsinhandlingformsubmissions,managingusersessions,interacti 如何設(shè)置PHP時區(qū)? Jun 25, 2025 am 01:00 AM tosetTherightTimeZoneInphp,restate_default_timezone_set()functionAtthestArtofyourscriptWithavalIdidentIdentifiersuchas'america/new_york'.1.usedate_default_default_timezone_set_set() See all articles
Its a good habit.<\/p> 23. Write Php errors to file using set_error_handler()
set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose<\/p> 24. Handle large arrays carefully
Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded :<\/p>
$db_records_in_array_format; \/\/This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; \/\/2MB moresome_function($cc); \/\/Another 2MB ?<\/pre> The above thing is common when importing a csv file or exporting table to a csv file<\/p> Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays.<\/p> Consider passing them by reference , or storing them in a class variable :<\/p> $a = get_large_array();pass_to_function(&$a);<\/pre> by doing this the same variable (and not its copy) will be available to the function. Check documentation<\/p> class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { \/\/process $this->a }}<\/pre> unset them as soon as possible , so that memory is freed and rest of the script can relax.<\/p> Here is a simple demonstration of how assign by reference can save memory in some cases<\/p> ';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() \/ 1000000 . '';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() \/ 1000000 . '';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() \/ 1000000 . '';<\/pre> The output on a typical php 5.4 machine is :<\/p> Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 <\/p> So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more.<\/p> 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this :<\/p> function add_to_cart(){ $db = new Database(); $db->query(\"INSERT INTO cart .....\");}function empty_cart(){ $db = new Database(); $db->query(\"DELETE FROM cart .....\");}<\/pre> Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory.<\/p> Use the singleton pattern for special cases like database connection.<\/p> 26. Avoid direct SQL query , abstract it $query = \"INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')\";$db->query($query); \/\/call to mysqli_query()<\/pre> The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like:<\/p> All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord<\/p> It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries.<\/p> A very simple example of an activerecord insert function can be like this :<\/p> function insert_record($table_name , $data){ foreach($data as $key => $value) {\t\/\/mysqli_real_escape_string $data[$key] = $db->mres($value); }\t\t $fields = implode(',' , array_keys($data)); $values = \"'\" . implode(\"','\" , array_values($data)) . \"'\"; \/\/Final query\t $query = \"INSERT INTO {$table}($fields) VALUES($values)\";\t\t return $db->query($query);}\/\/data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);\/\/perform the INSERT queryinsert_record('users' , $data);<\/pre> The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse).<\/p> This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise.<\/p> 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again.<\/p> Benefits :<\/p> Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue.<\/p> Storing session in database makes many other things easier like:<\/p> Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines\/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example :<\/p> <\/head> <\/body><\/html><\/pre> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories.<\/p> Lets take an example<\/p> www.domain.com\/store\/home.php www.domain.com\/store\/products\/ipad.php<\/p> In home.php the following can be written :<\/p> Home<\/a>Ipad<\/a><\/pre> But in ipad.php the links have to be like this :<\/p> Home<\/a>Ipad<\/a><\/pre> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag.<\/p> <\/head>Home<\/a>Ipad<\/a><\/body><\/html><\/pre> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products\/ipad.php<\/p> 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing.<\/p> ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT);<\/pre> On production , the display should be disabled.<\/p> ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark.<\/p> After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set.<\/p> ini_set('log_errors' , '1');ini_set('error_log' , '\/path\/to\/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> Note :<\/p> 1. The path '\/path\/to\/errors.txt' should be writable by the web server for errors to be logged there.<\/p> 2. A separate error file is specified , otherwise all logs would go inside the apache\/web server error log and get mixed up with other apache errors.<\/p> 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver).<\/p> 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like \/var\/log dont have to searched.<\/p> 5. Dont set error_reporting to 0. It will not log anything then.<\/p> Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file.<\/p> Set 'display_errors=On' in php.ini on development machine<\/p> On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page.<\/p> Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work.<\/p> Set 'display_errors=Off' in php.ini on production machine<\/p> Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away.<\/p> 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results.<\/p> On a 64 bit machine you can see such output.<\/p> $ php -aInteractive shellphp > echo strtotime(\"0000-00-00 00:00:00\");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600<\/pre> But on a 32 bit machine all of them would give bool(false). Check here for more.<\/p> What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines.<\/p> 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this :<\/p> set_time_limit(30);\/\/Rest of the code<\/pre> It may not always work. Any execution that happens outside the script via system calls\/os functions like socket operations, database operations etc. will not be under control of set_time_limit.<\/p> So if a database operation takes lot of time or \"hangs\" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time.<\/p> 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it.<\/p> A better solution :<\/p> \/**\tMethod to execute a command in the terminal\tUses :\t1. system\t2. passthru\t3. exec\t4. shell_exec*\/function terminal($command){\t\/\/system\tif(function_exists('system'))\t{\t\tob_start();\t\tsystem($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/passthru\telse if(function_exists('passthru'))\t{\t\tob_start();\t\tpassthru($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/exec\telse if(function_exists('exec'))\t{\t\texec($command , $output , $return_var);\t\t$output = implode(\"\\n\" , $output);\t}\t\/\/shell_exec\telse if(function_exists('shell_exec'))\t{\t\t$output = shell_exec($command) ;\t}\telse\t{\t\t$output = 'Command execution not possible on this system';\t\t$return_var = 1;\t}\treturn array('output' => $output , 'status' => $return_var);}terminal('ls');<\/pre> The above function will execute the shell command using whichever function is available , keeping your code consistent.<\/p> 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user.<\/p> 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise.<\/p> Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind.<\/p> 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily.<\/p> Few popular libraries are :<\/p> mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference.<\/p> 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code.<\/p> Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community.<\/p> They contain user feedback, expert advice and useful code snippets. So check them out.<\/p> 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!!<\/p> 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc.<\/p> The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more<\/p> 1. Codeigniter 2. WordPress 3. Joomla CMS<\/p> 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment.<\/p> Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster.<\/p> Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free.<\/p> "} 社區(qū) 文章 合集 問答 學習 課程 編程詞典 工具庫 開發(fā)工具 網(wǎng)站源碼 PHP 庫 JS特效 網(wǎng)站素材 擴展插件 AI工具 休閑 游戲下載 游戲教程 簡體中文 簡體中文 English 繁體中文 日本語 ??? Melayu Fran?ais Deutsch Login singup 首頁 后端開發(fā) php教程 40+ Useful Php tips for beginners ? Part 1 40+ Useful Php tips for beginners ? Part 1 WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB Jun 23, 2016 pm 02:37 PM PHP學習指南 http://www.binarytides.com/category/php-2/tutorial/ In this series we are going to look into some useful tips and techniques that can be used to improve and optimise your php code. Note that these php tips are meant for beginners and not those who are already using mvc frameworks etc. The Techniques 1. Do not use relative paths , instead define a ROOT path Its quite common to see such lines : require_once('http://www.cnblogs.com/lib/some_class.php'); This approach has many drawbacks : It first searches for directories specified in the include paths of php , then looks from the current directory. So many directories are checked. When a script is included by another script in a different directory , its base directory changes to that of the including script. Another issue , is that when a script is being run from cron , it may not have its parent directory as the working directory. So its a good idea to have absolute paths : define('ROOT' , '/var/www/project/');require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code Now this is an absolute path and will always stay constant. But we can improve this further. The directory /var/www/project can change , so do we change it everytime ? No instead we make it portable using magic constants like __FILE__ . Take a closer look : //suppose your script is /var/www/project/index.php//Then __FILE__ will always have that full path.define('ROOT' , pathinfo(__FILE__, PATHINFO_DIRNAME));require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code So now even if you shift your project to a different directory , like moving it to an online server , the same code will run without any changes. 2. Dont use require , include , require_once or include_once Your script could be including various files on top , like class libraries , files for utility and helper functions etc like this : require_once('lib/Database.php');require_once('lib/Mail.php');require_once('helpers/utitlity_functions.php'); This is rather primitive. The code needs to be more flexible. Write up helper functions to include things more easily. Lets take an example : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); require_once( $path ); }load_class('Database');load_class('Mail'); See any difference ? You must. It does not need any more explanation. You can improve this further if you wish to like this : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); if(file_exists($path)) { require_once( $path ); }} There are a lot of things that can be done with this : Search multiple directories for the same class file. Change the directory containing class files easily , without breaking the code anywhere. Use similar functions for loading files that contain helper functions , html content etc. 3. Maintain debugging environment in your application During development we echo database queries , dump variables which are creating problems , and then once the problem is solved , we comment them or erase them. But its a good idea to let everything stay and help in the long run On your development machine you can do this : define('ENVIRONMENT' , 'development');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } And on the server you can do this : define('ENVIRONMENT' , 'production');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } 4. Propagate status messages via session Status messages are those messages that are generated after doing a task. <?phpif($wrong_username || $wrong_password){ $msg = 'Invalid username or password';}?><html><body><?php echo $msg; ?><form>...</form></body></html> Code like that is common. Using variables to show status messages has limitations. They cannot be send via redirects (unless you propagate them as GET variables to the next script , which is very silly). In large scripts there might be multiple messages etc. Best way is to use session to propagate them (even if on same page). For this there has to be a session_start on every page. function set_flash($msg){ $_SESSION['message'] = $msg;}function get_flash(){ $msg = $_SESSION['message']; unset($_SESSION['message']); return $msg;} and in your script : <?phpif($wrong_username || $wrong_password){ set_flash('Invalid username or password');}?><html><body>Status is : <?php echo get_flash(); ?><form>...</form></body></html> 5. Make your functions flexible function add_to_cart($item_id , $qty){ $_SESSION['cart'][$item_id] = $qty;}add_to_cart( 'IPHONE3' , 2 ); When adding a single item you use the above function. When adding multiple items , will you create another function ? NO. Just make the function flexible enough to take different kinds of parameters. Have a closer look : function add_to_cart($item_id , $qty){ if(!is_array($item_id)) { $_SESSION['cart'][$item_id] = $qty; } else { foreach($item_id as $i_id => $qty) { $_SESSION['cart'][$i_id] = $qty; } }}add_to_cart( 'IPHONE3' , 2 );add_to_cart( array('IPHONE3' => 2 , 'IPAD' => 5) ); So now the same function can accept different kinds of output. The above can be applied in lots of places to make your code more agile. 6. Omit the closing php tag if it is the last thing in a script I wonder why this tip is omitted from so many blog posts on php tips. <?phpecho "Hello";//Now dont close this tag This will save you lots of problem. Lets take an example : A class file super_class.php <?phpclass super_class{ function super_function() { //super code }}?>//super extra character after the closing tag Now index.php require_once('super_class.php');//echo an image or pdf , or set the cookies or session data And you will get Headers already send error. Why ? because the "super extra character" has been echoed , and all headers went along with that. Now you start debugging. You may have to waste many hours to find the super extra space. Hence make it a habit to omit the closing tag : <?phpclass super_class{ function super_function() { //super code }}//No closing tag Thats better. 7. Collect all output at one place , and output at one shot to the browser This is called output buffering. Lets say you have been echoing content from different functions like this : function print_header(){ echo "<div id='header'>Site Log and Login links</div>";}function print_footer(){ echo "<div id='footer'>Site was made by me</div>";}print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}print_footer(); Instead of doing like that , first collect all output in one place. You can either store it inside variables in the functions or use ob_start and ob_end_clean. So now it should look like function print_header(){ $o = "<div id='header'>Site Log and Login links</div>"; return $o;}function print_footer(){ $o = "<div id='footer'>Site was made by me</div>"; return $o;}echo print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}echo print_footer(); So why should you do output buffering : You can change the output just before sending it to browser if you need to. Think about doing some str_replaces , or may be preg_replaces or may be adding some extra html at the end like profiler/debugger output Its a bad idea to send output to browser and do php processing at the same time. Have you ever seen a website where there is a Fatal error in the sidebar or in a box in the middle of the screen. You know why that happens ? Because processing and output are being mixed. 8. Send correct mime types via header when outputting non-html content Lets echo some xml. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataecho $xml; Works fine. But it needs some improvement. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataheader("content-type: text/xml");echo $xml; Note that header line. That line tells the browser that the content is xml content. So the browser can handle it correctly. Many javascript libraries also rely on header information. Similarly for javascript , css , jpg image , png image : Javascript header("content-type: application/x-javascript");echo "var a = 10"; CSS header("content-type: text/css");echo "#div id { background:#000; }"; 9. Set the correct character encoding for a mysql connection Ever faced a problem that unicode/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation. $host = 'localhost';$username = 'root';$password = 'super_secret';//Attempt to connect to database$c = mysqli_connect($host , $username, $password); //Check connection validityif (!$c) { die ("Could not connect to the database host: <br />". mysqli_connect_error());} //Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){ die('mysqli_set_charset() failed');} Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application. Otherwise what will happen ? You will see lots of boxes and ???????? in non english text. 10. Use htmlentities with the correct characterset option Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc. $value = htmlentities($this->value , ENT_QUOTES , 'UTF-8'); Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual. 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php. Use apache mod_gzip/mod_deflate to compress content via the .htaccess file. 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php. $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= "'$image' ,";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;//Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,]; Be smart. use json_encode : $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;//Output is : var images = ["myself.png","friends.png","colleagues.png"] Isn't that neat ? 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of "debugging" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on. Make sure that your application is as intelligent as possible and reports the most important information in the shortest time. $contents = "All the content";$file_path = "/var/www/project/content.txt";file_put_contents($file_path , $contents); That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons : Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file. $contents = "All the content";$dir = '/var/www/project';$file_path = $dir . "/content.txt";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die("Directory $dir is not writable, or does not exist. Please check");} By doing this you get the accurate information that where is a file write failing and why 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are "accessible" outside. Otherwise for example the files may be created by "php" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on. // Read and write for owner, read for everybody elsechmod("/somedir/somefile", 0644);// Everything for owner, read and execute for otherschmod("/somedir/somefile", 0755); 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ //Save the things} The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this : if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ //Save the things} Now you are free from the value the submit button 16. Use static variables in function where they always have same value //Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} Instead use static variables as : //Delay for some timefunction delay(){ static $sync_delay = null; if($sync_delay == null) { $sync_delay = get_option('sync_delay'); } echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} 17. Don't use the $_SESSION variable directly Some simple examples are : $_SESSION['username'] = $username;$username = $_SESSION['username']; But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain. Hence use application specific keys with wrapper functions : define('APP_ID' , 'abc_corp_ecommerce');//Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}//Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;} 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like : function utility_a(){ //This function does a utility thing like string processing}function utility_b(){ //This function does nother utility thing like database processing}function utility_c(){ //This function is ...} And you use the function throughout your application freely. You may want to wrap them into a class as static functions : class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}//and call them as $a = Utility::utility_a();$b = Utility::utility_b(); One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else. 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++; Its absolutely a WASTE. Write if($a == true){ $a_count++;} Dont try to make your code shorter by eating up syntax. Rather make your logic shorter. Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this : foreach($arr as $c => $v){ $arr[$c] = trim($v);} But it can more cleaner with array_map : $arr = array_map('trim' , $arr); This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more. 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters. The php filter extension provides simple way to validate or check values as being a valid 'something'. 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate']; Its a good habit. 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded : $db_records_in_array_format; //This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; //2MB moresome_function($cc); //Another 2MB ? The above thing is common when importing a csv file or exporting table to a csv file Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays. Consider passing them by reference , or storing them in a class variable : $a = get_large_array();pass_to_function(&$a); by doing this the same variable (and not its copy) will be available to the function. Check documentation class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { //process $this->a }} unset them as soon as possible , so that memory is freed and rest of the script can relax. Here is a simple demonstration of how assign by reference can save memory in some cases <?phpini_set('display_errors' , true);error_reporting(E_ALL);$a = array();for($i = 0; $i < 100000 ; $i++){ $a[$i] = 'A'.$i;}echo 'Memory usage in MB : '. memory_get_usage() / 1000000 . '<br />';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() / 1000000 . '<br />';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() / 1000000 . '<br />';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() / 1000000 . '<br />'; The output on a typical php 5.4 machine is : Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more. 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this : function add_to_cart(){ $db = new Database(); $db->query("INSERT INTO cart .....");}function empty_cart(){ $db = new Database(); $db->query("DELETE FROM cart .....");} Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory. Use the singleton pattern for special cases like database connection. 26. Avoid direct SQL query , abstract it $query = "INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')";$db->query($query); //call to mysqli_query() The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like: All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries. A very simple example of an activerecord insert function can be like this : function insert_record($table_name , $data){ foreach($data as $key => $value) { //mysqli_real_escape_string $data[$key] = $db->mres($value); } $fields = implode(',' , array_keys($data)); $values = "'" . implode("','" , array_values($data)) . "'"; //Final query $query = "INSERT INTO {$table}($fields) VALUES($values)"; return $db->query($query);}//data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);//perform the INSERT queryinsert_record('users' , $data); The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse). This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise. 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again. Benefits : Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue. Storing session in database makes many other things easier like: Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example : <head> <base href="http://www.domain.com/store/"></head><body> <img src="/static/imghw/default1.png" data-src="happy.jpg" class="lazy" / alt="40+ Useful Php tips for beginners ? Part 1" ></body></html> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories. Lets take an example www.domain.com/store/home.php www.domain.com/store/products/ipad.php In home.php the following can be written : <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> But in ipad.php the links have to be like this : <a href="../home.php">Home</a><a href="ipad.php">Ipad</a> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag. <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products/ipad.php 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing. ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT); On production , the display should be disabled. ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark. After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set. ini_set('log_errors' , '1');ini_set('error_log' , '/path/to/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); Note : 1. The path '/path/to/errors.txt' should be writable by the web server for errors to be logged there. 2. A separate error file is specified , otherwise all logs would go inside the apache/web server error log and get mixed up with other apache errors. 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver). 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like /var/log dont have to searched. 5. Dont set error_reporting to 0. It will not log anything then. Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file. Set 'display_errors=On' in php.ini on development machine On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page. Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work. Set 'display_errors=Off' in php.ini on production machine Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away. 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results. On a 64 bit machine you can see such output. $ php -aInteractive shellphp > echo strtotime("0000-00-00 00:00:00");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600 But on a 32 bit machine all of them would give bool(false). Check here for more. What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines. 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this : set_time_limit(30);//Rest of the code It may not always work. Any execution that happens outside the script via system calls/os functions like socket operations, database operations etc. will not be under control of set_time_limit. So if a database operation takes lot of time or "hangs" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time. 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it. A better solution : /** Method to execute a command in the terminal Uses : 1. system 2. passthru 3. exec 4. shell_exec*/function terminal($command){ //system if(function_exists('system')) { ob_start(); system($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //passthru else if(function_exists('passthru')) { ob_start(); passthru($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //exec else if(function_exists('exec')) { exec($command , $output , $return_var); $output = implode("\n" , $output); } //shell_exec else if(function_exists('shell_exec')) { $output = shell_exec($command) ; } else { $output = 'Command execution not possible on this system'; $return_var = 1; } return array('output' => $output , 'status' => $return_var);}terminal('ls'); The above function will execute the shell command using whichever function is available , keeping your code consistent. 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user. 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise. Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind. 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily. Few popular libraries are : mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference. 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code. Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community. They contain user feedback, expert advice and useful code snippets. So check them out. 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!! 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc. The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more 1. Codeigniter 2. WordPress 3. Joomla CMS 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment. Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster. Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free. 本站聲明 本文內(nèi)容由網(wǎng)友自發(fā)貢獻,版權(quán)歸原作者所有,本站不承擔相應(yīng)法律責任。如您發(fā)現(xiàn)有涉嫌抄襲侵權(quán)的內(nèi)容,請聯(lián)系admin@php.cn 熱AI工具 Undress AI Tool 免費脫衣服圖片 Undresser.AI Undress 人工智能驅(qū)動的應(yīng)用程序,用于創(chuàng)建逼真的裸體照片 AI Clothes Remover 用于從照片中去除衣服的在線人工智能工具。 Clothoff.io AI脫衣機 Video Face Swap 使用我們完全免費的人工智能換臉工具輕松在任何視頻中換臉! 顯示更多 熱門文章 指南:恒星刀片保存文件位置/保存文件丟失/不保存 4 周前 By DDD Oguri Cap Build Guide |漂亮的德比志 2 周前 By Jack chen Agnes Tachyon Build Guide |漂亮的德比志 1 周前 By Jack chen 沙丘:覺醒 - 高級行星學家Quest演練 4 周前 By Jack chen 約會一切:德克和哈珀關(guān)系指南 4 周前 By Jack chen 顯示更多 熱工具 記事本++7.3.1 好用且免費的代碼編輯器 SublimeText3漢化版 中文版,非常好用 禪工作室 13.0.1 功能強大的PHP集成開發(fā)環(huán)境 Dreamweaver CS6 視覺化網(wǎng)頁開發(fā)工具 SublimeText3 Mac版 神級代碼編輯軟件(SublimeText3) 顯示更多 熱門話題 gmail郵箱登陸入口在哪里 8638 17 Java教程 1783 16 CakePHP 教程 1728 56 Laravel 教程 1578 28 PHP教程 1442 31 顯示更多 Related knowledge 如何在PHP中實施身份驗證和授權(quán)? Jun 20, 2025 am 01:03 AM tosecurelyhandleauthenticationandationallizationInphp,lofterTheSesteps:1.AlwaysHashPasswordSwithPassword_hash()andverifyusingspasspassword_verify(),usepreparedStatatementStopreventsqlineptions,andStoreSeruserDatain usseruserDatain $ _sessiveferterlogin.2.implementrole-2.imaccessccsccccccccccccccccccccccccc. 如何在PHP中安全地處理文件上傳? Jun 19, 2025 am 01:05 AM 要安全處理PHP中的文件上傳,核心在于驗證文件類型、重命名文件并限制權(quán)限。1.使用finfo_file()檢查真實MIME類型,僅允許特定類型如image/jpeg;2.用uniqid()生成隨機文件名,存儲至非Web根目錄;3.通過php.ini和HTML表單限制文件大小,設(shè)置目錄權(quán)限為0755;4.使用ClamAV掃描惡意軟件,增強安全性。這些步驟有效防止安全漏洞,確保文件上傳過程安全可靠。 PHP中==(松散比較)和===(嚴格的比較)之間有什么區(qū)別? Jun 19, 2025 am 01:07 AM 在PHP中,==與===的主要區(qū)別在于類型檢查的嚴格程度。==在比較前會進行類型轉(zhuǎn)換,例如5=="5"返回true,而===要求值和類型都相同才會返回true,例如5==="5"返回false。使用場景上,===更安全應(yīng)優(yōu)先使用,==僅在需要類型轉(zhuǎn)換時使用。 如何在PHP( - , *, /,%)中執(zhí)行算術(shù)操作? Jun 19, 2025 pm 05:13 PM PHP中使用基本數(shù)學運算的方法如下:1.加法用 號,支持整數(shù)和浮點數(shù),也可用于變量,字符串數(shù)字會自動轉(zhuǎn)換但不推薦依賴;2.減法用-號,變量同理,類型轉(zhuǎn)換同樣適用;3.乘法用*號,適用于數(shù)字及類似字符串;4.除法用/號,需避免除以零,并注意結(jié)果可能是浮點數(shù);5.取模用%號,可用于判斷奇偶數(shù),處理負數(shù)時余數(shù)符號與被除數(shù)一致。正確使用這些運算符的關(guān)鍵在于確保數(shù)據(jù)類型清晰并處理好邊界情況。 如何與PHP的NOSQL數(shù)據(jù)庫(例如MongoDB,Redis)進行交互? Jun 19, 2025 am 01:07 AM 是的,PHP可以通過特定擴展或庫與MongoDB和Redis等NoSQL數(shù)據(jù)庫交互。首先,使用MongoDBPHP驅(qū)動(通過PECL或Composer安裝)創(chuàng)建客戶端實例并操作數(shù)據(jù)庫及集合,支持插入、查詢、聚合等操作;其次,使用Predis庫或phpredis擴展連接Redis,執(zhí)行鍵值設(shè)置與獲取,推薦phpredis用于高性能場景,Predis則便于快速部署;兩者均適用于生產(chǎn)環(huán)境且文檔完善。 我如何了解最新的PHP開發(fā)和最佳實踐? Jun 23, 2025 am 12:56 AM TostaycurrentwithPHPdevelopmentsandbestpractices,followkeynewssourceslikePHP.netandPHPWeekly,engagewithcommunitiesonforumsandconferences,keeptoolingupdatedandgraduallyadoptnewfeatures,andreadorcontributetoopensourceprojects.First,followreliablesource 什么是PHP,為什么它用于Web開發(fā)? Jun 23, 2025 am 12:55 AM PHPbecamepopularforwebdevelopmentduetoitseaseoflearning,seamlessintegrationwithHTML,widespreadhostingsupport,andalargeecosystemincludingframeworkslikeLaravelandCMSplatformslikeWordPress.Itexcelsinhandlingformsubmissions,managingusersessions,interacti 如何設(shè)置PHP時區(qū)? Jun 25, 2025 am 01:00 AM tosetTherightTimeZoneInphp,restate_default_timezone_set()functionAtthestArtofyourscriptWithavalIdidentIdentifiersuchas'america/new_york'.1.usedate_default_default_timezone_set_set() See all articles
The above thing is common when importing a csv file or exporting table to a csv file<\/p>
Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays.<\/p>
Consider passing them by reference , or storing them in a class variable :<\/p>
$a = get_large_array();pass_to_function(&$a);<\/pre> by doing this the same variable (and not its copy) will be available to the function. Check documentation<\/p> class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { \/\/process $this->a }}<\/pre> unset them as soon as possible , so that memory is freed and rest of the script can relax.<\/p> Here is a simple demonstration of how assign by reference can save memory in some cases<\/p> ';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() \/ 1000000 . '';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() \/ 1000000 . '';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() \/ 1000000 . '';<\/pre> The output on a typical php 5.4 machine is :<\/p> Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 <\/p> So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more.<\/p> 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this :<\/p> function add_to_cart(){ $db = new Database(); $db->query(\"INSERT INTO cart .....\");}function empty_cart(){ $db = new Database(); $db->query(\"DELETE FROM cart .....\");}<\/pre> Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory.<\/p> Use the singleton pattern for special cases like database connection.<\/p> 26. Avoid direct SQL query , abstract it $query = \"INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')\";$db->query($query); \/\/call to mysqli_query()<\/pre> The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like:<\/p> All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord<\/p> It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries.<\/p> A very simple example of an activerecord insert function can be like this :<\/p> function insert_record($table_name , $data){ foreach($data as $key => $value) {\t\/\/mysqli_real_escape_string $data[$key] = $db->mres($value); }\t\t $fields = implode(',' , array_keys($data)); $values = \"'\" . implode(\"','\" , array_values($data)) . \"'\"; \/\/Final query\t $query = \"INSERT INTO {$table}($fields) VALUES($values)\";\t\t return $db->query($query);}\/\/data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);\/\/perform the INSERT queryinsert_record('users' , $data);<\/pre> The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse).<\/p> This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise.<\/p> 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again.<\/p> Benefits :<\/p> Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue.<\/p> Storing session in database makes many other things easier like:<\/p> Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines\/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example :<\/p> <\/head> <\/body><\/html><\/pre> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories.<\/p> Lets take an example<\/p> www.domain.com\/store\/home.php www.domain.com\/store\/products\/ipad.php<\/p> In home.php the following can be written :<\/p> Home<\/a>Ipad<\/a><\/pre> But in ipad.php the links have to be like this :<\/p> Home<\/a>Ipad<\/a><\/pre> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag.<\/p> <\/head>Home<\/a>Ipad<\/a><\/body><\/html><\/pre> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products\/ipad.php<\/p> 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing.<\/p> ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT);<\/pre> On production , the display should be disabled.<\/p> ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark.<\/p> After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set.<\/p> ini_set('log_errors' , '1');ini_set('error_log' , '\/path\/to\/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> Note :<\/p> 1. The path '\/path\/to\/errors.txt' should be writable by the web server for errors to be logged there.<\/p> 2. A separate error file is specified , otherwise all logs would go inside the apache\/web server error log and get mixed up with other apache errors.<\/p> 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver).<\/p> 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like \/var\/log dont have to searched.<\/p> 5. Dont set error_reporting to 0. It will not log anything then.<\/p> Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file.<\/p> Set 'display_errors=On' in php.ini on development machine<\/p> On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page.<\/p> Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work.<\/p> Set 'display_errors=Off' in php.ini on production machine<\/p> Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away.<\/p> 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results.<\/p> On a 64 bit machine you can see such output.<\/p> $ php -aInteractive shellphp > echo strtotime(\"0000-00-00 00:00:00\");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600<\/pre> But on a 32 bit machine all of them would give bool(false). Check here for more.<\/p> What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines.<\/p> 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this :<\/p> set_time_limit(30);\/\/Rest of the code<\/pre> It may not always work. Any execution that happens outside the script via system calls\/os functions like socket operations, database operations etc. will not be under control of set_time_limit.<\/p> So if a database operation takes lot of time or \"hangs\" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time.<\/p> 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it.<\/p> A better solution :<\/p> \/**\tMethod to execute a command in the terminal\tUses :\t1. system\t2. passthru\t3. exec\t4. shell_exec*\/function terminal($command){\t\/\/system\tif(function_exists('system'))\t{\t\tob_start();\t\tsystem($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/passthru\telse if(function_exists('passthru'))\t{\t\tob_start();\t\tpassthru($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/exec\telse if(function_exists('exec'))\t{\t\texec($command , $output , $return_var);\t\t$output = implode(\"\\n\" , $output);\t}\t\/\/shell_exec\telse if(function_exists('shell_exec'))\t{\t\t$output = shell_exec($command) ;\t}\telse\t{\t\t$output = 'Command execution not possible on this system';\t\t$return_var = 1;\t}\treturn array('output' => $output , 'status' => $return_var);}terminal('ls');<\/pre> The above function will execute the shell command using whichever function is available , keeping your code consistent.<\/p> 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user.<\/p> 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise.<\/p> Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind.<\/p> 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily.<\/p> Few popular libraries are :<\/p> mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference.<\/p> 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code.<\/p> Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community.<\/p> They contain user feedback, expert advice and useful code snippets. So check them out.<\/p> 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!!<\/p> 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc.<\/p> The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more<\/p> 1. Codeigniter 2. WordPress 3. Joomla CMS<\/p> 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment.<\/p> Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster.<\/p> Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free.<\/p> "} 社區(qū) 文章 合集 問答 學習 課程 編程詞典 工具庫 開發(fā)工具 網(wǎng)站源碼 PHP 庫 JS特效 網(wǎng)站素材 擴展插件 AI工具 休閑 游戲下載 游戲教程 簡體中文 簡體中文 English 繁體中文 日本語 ??? Melayu Fran?ais Deutsch Login singup 首頁 后端開發(fā) php教程 40+ Useful Php tips for beginners ? Part 1 40+ Useful Php tips for beginners ? Part 1 WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB Jun 23, 2016 pm 02:37 PM PHP學習指南 http://www.binarytides.com/category/php-2/tutorial/ In this series we are going to look into some useful tips and techniques that can be used to improve and optimise your php code. Note that these php tips are meant for beginners and not those who are already using mvc frameworks etc. The Techniques 1. Do not use relative paths , instead define a ROOT path Its quite common to see such lines : require_once('http://www.cnblogs.com/lib/some_class.php'); This approach has many drawbacks : It first searches for directories specified in the include paths of php , then looks from the current directory. So many directories are checked. When a script is included by another script in a different directory , its base directory changes to that of the including script. Another issue , is that when a script is being run from cron , it may not have its parent directory as the working directory. So its a good idea to have absolute paths : define('ROOT' , '/var/www/project/');require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code Now this is an absolute path and will always stay constant. But we can improve this further. The directory /var/www/project can change , so do we change it everytime ? No instead we make it portable using magic constants like __FILE__ . Take a closer look : //suppose your script is /var/www/project/index.php//Then __FILE__ will always have that full path.define('ROOT' , pathinfo(__FILE__, PATHINFO_DIRNAME));require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code So now even if you shift your project to a different directory , like moving it to an online server , the same code will run without any changes. 2. Dont use require , include , require_once or include_once Your script could be including various files on top , like class libraries , files for utility and helper functions etc like this : require_once('lib/Database.php');require_once('lib/Mail.php');require_once('helpers/utitlity_functions.php'); This is rather primitive. The code needs to be more flexible. Write up helper functions to include things more easily. Lets take an example : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); require_once( $path ); }load_class('Database');load_class('Mail'); See any difference ? You must. It does not need any more explanation. You can improve this further if you wish to like this : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); if(file_exists($path)) { require_once( $path ); }} There are a lot of things that can be done with this : Search multiple directories for the same class file. Change the directory containing class files easily , without breaking the code anywhere. Use similar functions for loading files that contain helper functions , html content etc. 3. Maintain debugging environment in your application During development we echo database queries , dump variables which are creating problems , and then once the problem is solved , we comment them or erase them. But its a good idea to let everything stay and help in the long run On your development machine you can do this : define('ENVIRONMENT' , 'development');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } And on the server you can do this : define('ENVIRONMENT' , 'production');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } 4. Propagate status messages via session Status messages are those messages that are generated after doing a task. <?phpif($wrong_username || $wrong_password){ $msg = 'Invalid username or password';}?><html><body><?php echo $msg; ?><form>...</form></body></html> Code like that is common. Using variables to show status messages has limitations. They cannot be send via redirects (unless you propagate them as GET variables to the next script , which is very silly). In large scripts there might be multiple messages etc. Best way is to use session to propagate them (even if on same page). For this there has to be a session_start on every page. function set_flash($msg){ $_SESSION['message'] = $msg;}function get_flash(){ $msg = $_SESSION['message']; unset($_SESSION['message']); return $msg;} and in your script : <?phpif($wrong_username || $wrong_password){ set_flash('Invalid username or password');}?><html><body>Status is : <?php echo get_flash(); ?><form>...</form></body></html> 5. Make your functions flexible function add_to_cart($item_id , $qty){ $_SESSION['cart'][$item_id] = $qty;}add_to_cart( 'IPHONE3' , 2 ); When adding a single item you use the above function. When adding multiple items , will you create another function ? NO. Just make the function flexible enough to take different kinds of parameters. Have a closer look : function add_to_cart($item_id , $qty){ if(!is_array($item_id)) { $_SESSION['cart'][$item_id] = $qty; } else { foreach($item_id as $i_id => $qty) { $_SESSION['cart'][$i_id] = $qty; } }}add_to_cart( 'IPHONE3' , 2 );add_to_cart( array('IPHONE3' => 2 , 'IPAD' => 5) ); So now the same function can accept different kinds of output. The above can be applied in lots of places to make your code more agile. 6. Omit the closing php tag if it is the last thing in a script I wonder why this tip is omitted from so many blog posts on php tips. <?phpecho "Hello";//Now dont close this tag This will save you lots of problem. Lets take an example : A class file super_class.php <?phpclass super_class{ function super_function() { //super code }}?>//super extra character after the closing tag Now index.php require_once('super_class.php');//echo an image or pdf , or set the cookies or session data And you will get Headers already send error. Why ? because the "super extra character" has been echoed , and all headers went along with that. Now you start debugging. You may have to waste many hours to find the super extra space. Hence make it a habit to omit the closing tag : <?phpclass super_class{ function super_function() { //super code }}//No closing tag Thats better. 7. Collect all output at one place , and output at one shot to the browser This is called output buffering. Lets say you have been echoing content from different functions like this : function print_header(){ echo "<div id='header'>Site Log and Login links</div>";}function print_footer(){ echo "<div id='footer'>Site was made by me</div>";}print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}print_footer(); Instead of doing like that , first collect all output in one place. You can either store it inside variables in the functions or use ob_start and ob_end_clean. So now it should look like function print_header(){ $o = "<div id='header'>Site Log and Login links</div>"; return $o;}function print_footer(){ $o = "<div id='footer'>Site was made by me</div>"; return $o;}echo print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}echo print_footer(); So why should you do output buffering : You can change the output just before sending it to browser if you need to. Think about doing some str_replaces , or may be preg_replaces or may be adding some extra html at the end like profiler/debugger output Its a bad idea to send output to browser and do php processing at the same time. Have you ever seen a website where there is a Fatal error in the sidebar or in a box in the middle of the screen. You know why that happens ? Because processing and output are being mixed. 8. Send correct mime types via header when outputting non-html content Lets echo some xml. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataecho $xml; Works fine. But it needs some improvement. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataheader("content-type: text/xml");echo $xml; Note that header line. That line tells the browser that the content is xml content. So the browser can handle it correctly. Many javascript libraries also rely on header information. Similarly for javascript , css , jpg image , png image : Javascript header("content-type: application/x-javascript");echo "var a = 10"; CSS header("content-type: text/css");echo "#div id { background:#000; }"; 9. Set the correct character encoding for a mysql connection Ever faced a problem that unicode/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation. $host = 'localhost';$username = 'root';$password = 'super_secret';//Attempt to connect to database$c = mysqli_connect($host , $username, $password); //Check connection validityif (!$c) { die ("Could not connect to the database host: <br />". mysqli_connect_error());} //Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){ die('mysqli_set_charset() failed');} Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application. Otherwise what will happen ? You will see lots of boxes and ???????? in non english text. 10. Use htmlentities with the correct characterset option Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc. $value = htmlentities($this->value , ENT_QUOTES , 'UTF-8'); Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual. 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php. Use apache mod_gzip/mod_deflate to compress content via the .htaccess file. 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php. $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= "'$image' ,";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;//Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,]; Be smart. use json_encode : $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;//Output is : var images = ["myself.png","friends.png","colleagues.png"] Isn't that neat ? 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of "debugging" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on. Make sure that your application is as intelligent as possible and reports the most important information in the shortest time. $contents = "All the content";$file_path = "/var/www/project/content.txt";file_put_contents($file_path , $contents); That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons : Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file. $contents = "All the content";$dir = '/var/www/project';$file_path = $dir . "/content.txt";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die("Directory $dir is not writable, or does not exist. Please check");} By doing this you get the accurate information that where is a file write failing and why 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are "accessible" outside. Otherwise for example the files may be created by "php" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on. // Read and write for owner, read for everybody elsechmod("/somedir/somefile", 0644);// Everything for owner, read and execute for otherschmod("/somedir/somefile", 0755); 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ //Save the things} The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this : if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ //Save the things} Now you are free from the value the submit button 16. Use static variables in function where they always have same value //Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} Instead use static variables as : //Delay for some timefunction delay(){ static $sync_delay = null; if($sync_delay == null) { $sync_delay = get_option('sync_delay'); } echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} 17. Don't use the $_SESSION variable directly Some simple examples are : $_SESSION['username'] = $username;$username = $_SESSION['username']; But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain. Hence use application specific keys with wrapper functions : define('APP_ID' , 'abc_corp_ecommerce');//Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}//Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;} 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like : function utility_a(){ //This function does a utility thing like string processing}function utility_b(){ //This function does nother utility thing like database processing}function utility_c(){ //This function is ...} And you use the function throughout your application freely. You may want to wrap them into a class as static functions : class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}//and call them as $a = Utility::utility_a();$b = Utility::utility_b(); One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else. 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++; Its absolutely a WASTE. Write if($a == true){ $a_count++;} Dont try to make your code shorter by eating up syntax. Rather make your logic shorter. Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this : foreach($arr as $c => $v){ $arr[$c] = trim($v);} But it can more cleaner with array_map : $arr = array_map('trim' , $arr); This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more. 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters. The php filter extension provides simple way to validate or check values as being a valid 'something'. 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate']; Its a good habit. 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded : $db_records_in_array_format; //This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; //2MB moresome_function($cc); //Another 2MB ? The above thing is common when importing a csv file or exporting table to a csv file Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays. Consider passing them by reference , or storing them in a class variable : $a = get_large_array();pass_to_function(&$a); by doing this the same variable (and not its copy) will be available to the function. Check documentation class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { //process $this->a }} unset them as soon as possible , so that memory is freed and rest of the script can relax. Here is a simple demonstration of how assign by reference can save memory in some cases <?phpini_set('display_errors' , true);error_reporting(E_ALL);$a = array();for($i = 0; $i < 100000 ; $i++){ $a[$i] = 'A'.$i;}echo 'Memory usage in MB : '. memory_get_usage() / 1000000 . '<br />';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() / 1000000 . '<br />';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() / 1000000 . '<br />';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() / 1000000 . '<br />'; The output on a typical php 5.4 machine is : Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more. 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this : function add_to_cart(){ $db = new Database(); $db->query("INSERT INTO cart .....");}function empty_cart(){ $db = new Database(); $db->query("DELETE FROM cart .....");} Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory. Use the singleton pattern for special cases like database connection. 26. Avoid direct SQL query , abstract it $query = "INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')";$db->query($query); //call to mysqli_query() The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like: All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries. A very simple example of an activerecord insert function can be like this : function insert_record($table_name , $data){ foreach($data as $key => $value) { //mysqli_real_escape_string $data[$key] = $db->mres($value); } $fields = implode(',' , array_keys($data)); $values = "'" . implode("','" , array_values($data)) . "'"; //Final query $query = "INSERT INTO {$table}($fields) VALUES($values)"; return $db->query($query);}//data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);//perform the INSERT queryinsert_record('users' , $data); The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse). This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise. 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again. Benefits : Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue. Storing session in database makes many other things easier like: Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example : <head> <base href="http://www.domain.com/store/"></head><body> <img src="/static/imghw/default1.png" data-src="happy.jpg" class="lazy" / alt="40+ Useful Php tips for beginners ? Part 1" ></body></html> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories. Lets take an example www.domain.com/store/home.php www.domain.com/store/products/ipad.php In home.php the following can be written : <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> But in ipad.php the links have to be like this : <a href="../home.php">Home</a><a href="ipad.php">Ipad</a> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag. <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products/ipad.php 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing. ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT); On production , the display should be disabled. ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark. After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set. ini_set('log_errors' , '1');ini_set('error_log' , '/path/to/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); Note : 1. The path '/path/to/errors.txt' should be writable by the web server for errors to be logged there. 2. A separate error file is specified , otherwise all logs would go inside the apache/web server error log and get mixed up with other apache errors. 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver). 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like /var/log dont have to searched. 5. Dont set error_reporting to 0. It will not log anything then. Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file. Set 'display_errors=On' in php.ini on development machine On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page. Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work. Set 'display_errors=Off' in php.ini on production machine Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away. 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results. On a 64 bit machine you can see such output. $ php -aInteractive shellphp > echo strtotime("0000-00-00 00:00:00");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600 But on a 32 bit machine all of them would give bool(false). Check here for more. What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines. 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this : set_time_limit(30);//Rest of the code It may not always work. Any execution that happens outside the script via system calls/os functions like socket operations, database operations etc. will not be under control of set_time_limit. So if a database operation takes lot of time or "hangs" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time. 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it. A better solution : /** Method to execute a command in the terminal Uses : 1. system 2. passthru 3. exec 4. shell_exec*/function terminal($command){ //system if(function_exists('system')) { ob_start(); system($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //passthru else if(function_exists('passthru')) { ob_start(); passthru($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //exec else if(function_exists('exec')) { exec($command , $output , $return_var); $output = implode("\n" , $output); } //shell_exec else if(function_exists('shell_exec')) { $output = shell_exec($command) ; } else { $output = 'Command execution not possible on this system'; $return_var = 1; } return array('output' => $output , 'status' => $return_var);}terminal('ls'); The above function will execute the shell command using whichever function is available , keeping your code consistent. 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user. 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise. Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind. 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily. Few popular libraries are : mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference. 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code. Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community. They contain user feedback, expert advice and useful code snippets. So check them out. 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!! 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc. The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more 1. Codeigniter 2. WordPress 3. Joomla CMS 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment. Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster. Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free. 本站聲明 本文內(nèi)容由網(wǎng)友自發(fā)貢獻,版權(quán)歸原作者所有,本站不承擔相應(yīng)法律責任。如您發(fā)現(xiàn)有涉嫌抄襲侵權(quán)的內(nèi)容,請聯(lián)系admin@php.cn 熱AI工具 Undress AI Tool 免費脫衣服圖片 Undresser.AI Undress 人工智能驅(qū)動的應(yīng)用程序,用于創(chuàng)建逼真的裸體照片 AI Clothes Remover 用于從照片中去除衣服的在線人工智能工具。 Clothoff.io AI脫衣機 Video Face Swap 使用我們完全免費的人工智能換臉工具輕松在任何視頻中換臉! 顯示更多 熱門文章 指南:恒星刀片保存文件位置/保存文件丟失/不保存 4 周前 By DDD Oguri Cap Build Guide |漂亮的德比志 2 周前 By Jack chen Agnes Tachyon Build Guide |漂亮的德比志 1 周前 By Jack chen 沙丘:覺醒 - 高級行星學家Quest演練 4 周前 By Jack chen 約會一切:德克和哈珀關(guān)系指南 4 周前 By Jack chen 顯示更多 熱工具 記事本++7.3.1 好用且免費的代碼編輯器 SublimeText3漢化版 中文版,非常好用 禪工作室 13.0.1 功能強大的PHP集成開發(fā)環(huán)境 Dreamweaver CS6 視覺化網(wǎng)頁開發(fā)工具 SublimeText3 Mac版 神級代碼編輯軟件(SublimeText3) 顯示更多 熱門話題 gmail郵箱登陸入口在哪里 8638 17 Java教程 1783 16 CakePHP 教程 1728 56 Laravel 教程 1578 28 PHP教程 1442 31 顯示更多 Related knowledge 如何在PHP中實施身份驗證和授權(quán)? Jun 20, 2025 am 01:03 AM tosecurelyhandleauthenticationandationallizationInphp,lofterTheSesteps:1.AlwaysHashPasswordSwithPassword_hash()andverifyusingspasspassword_verify(),usepreparedStatatementStopreventsqlineptions,andStoreSeruserDatain usseruserDatain $ _sessiveferterlogin.2.implementrole-2.imaccessccsccccccccccccccccccccccccc. 如何在PHP中安全地處理文件上傳? Jun 19, 2025 am 01:05 AM 要安全處理PHP中的文件上傳,核心在于驗證文件類型、重命名文件并限制權(quán)限。1.使用finfo_file()檢查真實MIME類型,僅允許特定類型如image/jpeg;2.用uniqid()生成隨機文件名,存儲至非Web根目錄;3.通過php.ini和HTML表單限制文件大小,設(shè)置目錄權(quán)限為0755;4.使用ClamAV掃描惡意軟件,增強安全性。這些步驟有效防止安全漏洞,確保文件上傳過程安全可靠。 PHP中==(松散比較)和===(嚴格的比較)之間有什么區(qū)別? Jun 19, 2025 am 01:07 AM 在PHP中,==與===的主要區(qū)別在于類型檢查的嚴格程度。==在比較前會進行類型轉(zhuǎn)換,例如5=="5"返回true,而===要求值和類型都相同才會返回true,例如5==="5"返回false。使用場景上,===更安全應(yīng)優(yōu)先使用,==僅在需要類型轉(zhuǎn)換時使用。 如何在PHP( - , *, /,%)中執(zhí)行算術(shù)操作? Jun 19, 2025 pm 05:13 PM PHP中使用基本數(shù)學運算的方法如下:1.加法用 號,支持整數(shù)和浮點數(shù),也可用于變量,字符串數(shù)字會自動轉(zhuǎn)換但不推薦依賴;2.減法用-號,變量同理,類型轉(zhuǎn)換同樣適用;3.乘法用*號,適用于數(shù)字及類似字符串;4.除法用/號,需避免除以零,并注意結(jié)果可能是浮點數(shù);5.取模用%號,可用于判斷奇偶數(shù),處理負數(shù)時余數(shù)符號與被除數(shù)一致。正確使用這些運算符的關(guān)鍵在于確保數(shù)據(jù)類型清晰并處理好邊界情況。 如何與PHP的NOSQL數(shù)據(jù)庫(例如MongoDB,Redis)進行交互? Jun 19, 2025 am 01:07 AM 是的,PHP可以通過特定擴展或庫與MongoDB和Redis等NoSQL數(shù)據(jù)庫交互。首先,使用MongoDBPHP驅(qū)動(通過PECL或Composer安裝)創(chuàng)建客戶端實例并操作數(shù)據(jù)庫及集合,支持插入、查詢、聚合等操作;其次,使用Predis庫或phpredis擴展連接Redis,執(zhí)行鍵值設(shè)置與獲取,推薦phpredis用于高性能場景,Predis則便于快速部署;兩者均適用于生產(chǎn)環(huán)境且文檔完善。 我如何了解最新的PHP開發(fā)和最佳實踐? Jun 23, 2025 am 12:56 AM TostaycurrentwithPHPdevelopmentsandbestpractices,followkeynewssourceslikePHP.netandPHPWeekly,engagewithcommunitiesonforumsandconferences,keeptoolingupdatedandgraduallyadoptnewfeatures,andreadorcontributetoopensourceprojects.First,followreliablesource 什么是PHP,為什么它用于Web開發(fā)? Jun 23, 2025 am 12:55 AM PHPbecamepopularforwebdevelopmentduetoitseaseoflearning,seamlessintegrationwithHTML,widespreadhostingsupport,andalargeecosystemincludingframeworkslikeLaravelandCMSplatformslikeWordPress.Itexcelsinhandlingformsubmissions,managingusersessions,interacti 如何設(shè)置PHP時區(qū)? Jun 25, 2025 am 01:00 AM tosetTherightTimeZoneInphp,restate_default_timezone_set()functionAtthestArtofyourscriptWithavalIdidentIdentifiersuchas'america/new_york'.1.usedate_default_default_timezone_set_set() See all articles
by doing this the same variable (and not its copy) will be available to the function. Check documentation<\/p>
class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { \/\/process $this->a }}<\/pre> unset them as soon as possible , so that memory is freed and rest of the script can relax.<\/p> Here is a simple demonstration of how assign by reference can save memory in some cases<\/p> ';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() \/ 1000000 . '';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() \/ 1000000 . '';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() \/ 1000000 . '';<\/pre> The output on a typical php 5.4 machine is :<\/p> Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 <\/p> So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more.<\/p> 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this :<\/p> function add_to_cart(){ $db = new Database(); $db->query(\"INSERT INTO cart .....\");}function empty_cart(){ $db = new Database(); $db->query(\"DELETE FROM cart .....\");}<\/pre> Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory.<\/p> Use the singleton pattern for special cases like database connection.<\/p> 26. Avoid direct SQL query , abstract it $query = \"INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')\";$db->query($query); \/\/call to mysqli_query()<\/pre> The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like:<\/p> All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord<\/p> It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries.<\/p> A very simple example of an activerecord insert function can be like this :<\/p> function insert_record($table_name , $data){ foreach($data as $key => $value) {\t\/\/mysqli_real_escape_string $data[$key] = $db->mres($value); }\t\t $fields = implode(',' , array_keys($data)); $values = \"'\" . implode(\"','\" , array_values($data)) . \"'\"; \/\/Final query\t $query = \"INSERT INTO {$table}($fields) VALUES($values)\";\t\t return $db->query($query);}\/\/data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);\/\/perform the INSERT queryinsert_record('users' , $data);<\/pre> The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse).<\/p> This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise.<\/p> 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again.<\/p> Benefits :<\/p> Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue.<\/p> Storing session in database makes many other things easier like:<\/p> Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines\/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example :<\/p> <\/head> <\/body><\/html><\/pre> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories.<\/p> Lets take an example<\/p> www.domain.com\/store\/home.php www.domain.com\/store\/products\/ipad.php<\/p> In home.php the following can be written :<\/p> Home<\/a>Ipad<\/a><\/pre> But in ipad.php the links have to be like this :<\/p> Home<\/a>Ipad<\/a><\/pre> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag.<\/p> <\/head>Home<\/a>Ipad<\/a><\/body><\/html><\/pre> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products\/ipad.php<\/p> 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing.<\/p> ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT);<\/pre> On production , the display should be disabled.<\/p> ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark.<\/p> After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set.<\/p> ini_set('log_errors' , '1');ini_set('error_log' , '\/path\/to\/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> Note :<\/p> 1. The path '\/path\/to\/errors.txt' should be writable by the web server for errors to be logged there.<\/p> 2. A separate error file is specified , otherwise all logs would go inside the apache\/web server error log and get mixed up with other apache errors.<\/p> 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver).<\/p> 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like \/var\/log dont have to searched.<\/p> 5. Dont set error_reporting to 0. It will not log anything then.<\/p> Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file.<\/p> Set 'display_errors=On' in php.ini on development machine<\/p> On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page.<\/p> Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work.<\/p> Set 'display_errors=Off' in php.ini on production machine<\/p> Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away.<\/p> 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results.<\/p> On a 64 bit machine you can see such output.<\/p> $ php -aInteractive shellphp > echo strtotime(\"0000-00-00 00:00:00\");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600<\/pre> But on a 32 bit machine all of them would give bool(false). Check here for more.<\/p> What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines.<\/p> 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this :<\/p> set_time_limit(30);\/\/Rest of the code<\/pre> It may not always work. Any execution that happens outside the script via system calls\/os functions like socket operations, database operations etc. will not be under control of set_time_limit.<\/p> So if a database operation takes lot of time or \"hangs\" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time.<\/p> 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it.<\/p> A better solution :<\/p> \/**\tMethod to execute a command in the terminal\tUses :\t1. system\t2. passthru\t3. exec\t4. shell_exec*\/function terminal($command){\t\/\/system\tif(function_exists('system'))\t{\t\tob_start();\t\tsystem($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/passthru\telse if(function_exists('passthru'))\t{\t\tob_start();\t\tpassthru($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/exec\telse if(function_exists('exec'))\t{\t\texec($command , $output , $return_var);\t\t$output = implode(\"\\n\" , $output);\t}\t\/\/shell_exec\telse if(function_exists('shell_exec'))\t{\t\t$output = shell_exec($command) ;\t}\telse\t{\t\t$output = 'Command execution not possible on this system';\t\t$return_var = 1;\t}\treturn array('output' => $output , 'status' => $return_var);}terminal('ls');<\/pre> The above function will execute the shell command using whichever function is available , keeping your code consistent.<\/p> 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user.<\/p> 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise.<\/p> Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind.<\/p> 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily.<\/p> Few popular libraries are :<\/p> mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference.<\/p> 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code.<\/p> Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community.<\/p> They contain user feedback, expert advice and useful code snippets. So check them out.<\/p> 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!!<\/p> 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc.<\/p> The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more<\/p> 1. Codeigniter 2. WordPress 3. Joomla CMS<\/p> 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment.<\/p> Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster.<\/p> Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free.<\/p> "} 社區(qū) 文章 合集 問答 學習 課程 編程詞典 工具庫 開發(fā)工具 網(wǎng)站源碼 PHP 庫 JS特效 網(wǎng)站素材 擴展插件 AI工具 休閑 游戲下載 游戲教程 簡體中文 簡體中文 English 繁體中文 日本語 ??? Melayu Fran?ais Deutsch Login singup 首頁 后端開發(fā) php教程 40+ Useful Php tips for beginners ? Part 1 40+ Useful Php tips for beginners ? Part 1 WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB Jun 23, 2016 pm 02:37 PM PHP學習指南 http://www.binarytides.com/category/php-2/tutorial/ In this series we are going to look into some useful tips and techniques that can be used to improve and optimise your php code. Note that these php tips are meant for beginners and not those who are already using mvc frameworks etc. The Techniques 1. Do not use relative paths , instead define a ROOT path Its quite common to see such lines : require_once('http://www.cnblogs.com/lib/some_class.php'); This approach has many drawbacks : It first searches for directories specified in the include paths of php , then looks from the current directory. So many directories are checked. When a script is included by another script in a different directory , its base directory changes to that of the including script. Another issue , is that when a script is being run from cron , it may not have its parent directory as the working directory. So its a good idea to have absolute paths : define('ROOT' , '/var/www/project/');require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code Now this is an absolute path and will always stay constant. But we can improve this further. The directory /var/www/project can change , so do we change it everytime ? No instead we make it portable using magic constants like __FILE__ . Take a closer look : //suppose your script is /var/www/project/index.php//Then __FILE__ will always have that full path.define('ROOT' , pathinfo(__FILE__, PATHINFO_DIRNAME));require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code So now even if you shift your project to a different directory , like moving it to an online server , the same code will run without any changes. 2. Dont use require , include , require_once or include_once Your script could be including various files on top , like class libraries , files for utility and helper functions etc like this : require_once('lib/Database.php');require_once('lib/Mail.php');require_once('helpers/utitlity_functions.php'); This is rather primitive. The code needs to be more flexible. Write up helper functions to include things more easily. Lets take an example : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); require_once( $path ); }load_class('Database');load_class('Mail'); See any difference ? You must. It does not need any more explanation. You can improve this further if you wish to like this : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); if(file_exists($path)) { require_once( $path ); }} There are a lot of things that can be done with this : Search multiple directories for the same class file. Change the directory containing class files easily , without breaking the code anywhere. Use similar functions for loading files that contain helper functions , html content etc. 3. Maintain debugging environment in your application During development we echo database queries , dump variables which are creating problems , and then once the problem is solved , we comment them or erase them. But its a good idea to let everything stay and help in the long run On your development machine you can do this : define('ENVIRONMENT' , 'development');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } And on the server you can do this : define('ENVIRONMENT' , 'production');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } 4. Propagate status messages via session Status messages are those messages that are generated after doing a task. <?phpif($wrong_username || $wrong_password){ $msg = 'Invalid username or password';}?><html><body><?php echo $msg; ?><form>...</form></body></html> Code like that is common. Using variables to show status messages has limitations. They cannot be send via redirects (unless you propagate them as GET variables to the next script , which is very silly). In large scripts there might be multiple messages etc. Best way is to use session to propagate them (even if on same page). For this there has to be a session_start on every page. function set_flash($msg){ $_SESSION['message'] = $msg;}function get_flash(){ $msg = $_SESSION['message']; unset($_SESSION['message']); return $msg;} and in your script : <?phpif($wrong_username || $wrong_password){ set_flash('Invalid username or password');}?><html><body>Status is : <?php echo get_flash(); ?><form>...</form></body></html> 5. Make your functions flexible function add_to_cart($item_id , $qty){ $_SESSION['cart'][$item_id] = $qty;}add_to_cart( 'IPHONE3' , 2 ); When adding a single item you use the above function. When adding multiple items , will you create another function ? NO. Just make the function flexible enough to take different kinds of parameters. Have a closer look : function add_to_cart($item_id , $qty){ if(!is_array($item_id)) { $_SESSION['cart'][$item_id] = $qty; } else { foreach($item_id as $i_id => $qty) { $_SESSION['cart'][$i_id] = $qty; } }}add_to_cart( 'IPHONE3' , 2 );add_to_cart( array('IPHONE3' => 2 , 'IPAD' => 5) ); So now the same function can accept different kinds of output. The above can be applied in lots of places to make your code more agile. 6. Omit the closing php tag if it is the last thing in a script I wonder why this tip is omitted from so many blog posts on php tips. <?phpecho "Hello";//Now dont close this tag This will save you lots of problem. Lets take an example : A class file super_class.php <?phpclass super_class{ function super_function() { //super code }}?>//super extra character after the closing tag Now index.php require_once('super_class.php');//echo an image or pdf , or set the cookies or session data And you will get Headers already send error. Why ? because the "super extra character" has been echoed , and all headers went along with that. Now you start debugging. You may have to waste many hours to find the super extra space. Hence make it a habit to omit the closing tag : <?phpclass super_class{ function super_function() { //super code }}//No closing tag Thats better. 7. Collect all output at one place , and output at one shot to the browser This is called output buffering. Lets say you have been echoing content from different functions like this : function print_header(){ echo "<div id='header'>Site Log and Login links</div>";}function print_footer(){ echo "<div id='footer'>Site was made by me</div>";}print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}print_footer(); Instead of doing like that , first collect all output in one place. You can either store it inside variables in the functions or use ob_start and ob_end_clean. So now it should look like function print_header(){ $o = "<div id='header'>Site Log and Login links</div>"; return $o;}function print_footer(){ $o = "<div id='footer'>Site was made by me</div>"; return $o;}echo print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}echo print_footer(); So why should you do output buffering : You can change the output just before sending it to browser if you need to. Think about doing some str_replaces , or may be preg_replaces or may be adding some extra html at the end like profiler/debugger output Its a bad idea to send output to browser and do php processing at the same time. Have you ever seen a website where there is a Fatal error in the sidebar or in a box in the middle of the screen. You know why that happens ? Because processing and output are being mixed. 8. Send correct mime types via header when outputting non-html content Lets echo some xml. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataecho $xml; Works fine. But it needs some improvement. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataheader("content-type: text/xml");echo $xml; Note that header line. That line tells the browser that the content is xml content. So the browser can handle it correctly. Many javascript libraries also rely on header information. Similarly for javascript , css , jpg image , png image : Javascript header("content-type: application/x-javascript");echo "var a = 10"; CSS header("content-type: text/css");echo "#div id { background:#000; }"; 9. Set the correct character encoding for a mysql connection Ever faced a problem that unicode/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation. $host = 'localhost';$username = 'root';$password = 'super_secret';//Attempt to connect to database$c = mysqli_connect($host , $username, $password); //Check connection validityif (!$c) { die ("Could not connect to the database host: <br />". mysqli_connect_error());} //Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){ die('mysqli_set_charset() failed');} Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application. Otherwise what will happen ? You will see lots of boxes and ???????? in non english text. 10. Use htmlentities with the correct characterset option Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc. $value = htmlentities($this->value , ENT_QUOTES , 'UTF-8'); Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual. 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php. Use apache mod_gzip/mod_deflate to compress content via the .htaccess file. 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php. $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= "'$image' ,";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;//Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,]; Be smart. use json_encode : $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;//Output is : var images = ["myself.png","friends.png","colleagues.png"] Isn't that neat ? 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of "debugging" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on. Make sure that your application is as intelligent as possible and reports the most important information in the shortest time. $contents = "All the content";$file_path = "/var/www/project/content.txt";file_put_contents($file_path , $contents); That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons : Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file. $contents = "All the content";$dir = '/var/www/project';$file_path = $dir . "/content.txt";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die("Directory $dir is not writable, or does not exist. Please check");} By doing this you get the accurate information that where is a file write failing and why 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are "accessible" outside. Otherwise for example the files may be created by "php" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on. // Read and write for owner, read for everybody elsechmod("/somedir/somefile", 0644);// Everything for owner, read and execute for otherschmod("/somedir/somefile", 0755); 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ //Save the things} The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this : if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ //Save the things} Now you are free from the value the submit button 16. Use static variables in function where they always have same value //Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} Instead use static variables as : //Delay for some timefunction delay(){ static $sync_delay = null; if($sync_delay == null) { $sync_delay = get_option('sync_delay'); } echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} 17. Don't use the $_SESSION variable directly Some simple examples are : $_SESSION['username'] = $username;$username = $_SESSION['username']; But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain. Hence use application specific keys with wrapper functions : define('APP_ID' , 'abc_corp_ecommerce');//Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}//Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;} 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like : function utility_a(){ //This function does a utility thing like string processing}function utility_b(){ //This function does nother utility thing like database processing}function utility_c(){ //This function is ...} And you use the function throughout your application freely. You may want to wrap them into a class as static functions : class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}//and call them as $a = Utility::utility_a();$b = Utility::utility_b(); One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else. 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++; Its absolutely a WASTE. Write if($a == true){ $a_count++;} Dont try to make your code shorter by eating up syntax. Rather make your logic shorter. Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this : foreach($arr as $c => $v){ $arr[$c] = trim($v);} But it can more cleaner with array_map : $arr = array_map('trim' , $arr); This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more. 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters. The php filter extension provides simple way to validate or check values as being a valid 'something'. 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate']; Its a good habit. 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded : $db_records_in_array_format; //This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; //2MB moresome_function($cc); //Another 2MB ? The above thing is common when importing a csv file or exporting table to a csv file Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays. Consider passing them by reference , or storing them in a class variable : $a = get_large_array();pass_to_function(&$a); by doing this the same variable (and not its copy) will be available to the function. Check documentation class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { //process $this->a }} unset them as soon as possible , so that memory is freed and rest of the script can relax. Here is a simple demonstration of how assign by reference can save memory in some cases <?phpini_set('display_errors' , true);error_reporting(E_ALL);$a = array();for($i = 0; $i < 100000 ; $i++){ $a[$i] = 'A'.$i;}echo 'Memory usage in MB : '. memory_get_usage() / 1000000 . '<br />';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() / 1000000 . '<br />';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() / 1000000 . '<br />';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() / 1000000 . '<br />'; The output on a typical php 5.4 machine is : Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more. 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this : function add_to_cart(){ $db = new Database(); $db->query("INSERT INTO cart .....");}function empty_cart(){ $db = new Database(); $db->query("DELETE FROM cart .....");} Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory. Use the singleton pattern for special cases like database connection. 26. Avoid direct SQL query , abstract it $query = "INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')";$db->query($query); //call to mysqli_query() The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like: All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries. A very simple example of an activerecord insert function can be like this : function insert_record($table_name , $data){ foreach($data as $key => $value) { //mysqli_real_escape_string $data[$key] = $db->mres($value); } $fields = implode(',' , array_keys($data)); $values = "'" . implode("','" , array_values($data)) . "'"; //Final query $query = "INSERT INTO {$table}($fields) VALUES($values)"; return $db->query($query);}//data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);//perform the INSERT queryinsert_record('users' , $data); The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse). This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise. 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again. Benefits : Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue. Storing session in database makes many other things easier like: Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example : <head> <base href="http://www.domain.com/store/"></head><body> <img src="/static/imghw/default1.png" data-src="happy.jpg" class="lazy" / alt="40+ Useful Php tips for beginners ? Part 1" ></body></html> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories. Lets take an example www.domain.com/store/home.php www.domain.com/store/products/ipad.php In home.php the following can be written : <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> But in ipad.php the links have to be like this : <a href="../home.php">Home</a><a href="ipad.php">Ipad</a> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag. <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products/ipad.php 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing. ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT); On production , the display should be disabled. ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark. After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set. ini_set('log_errors' , '1');ini_set('error_log' , '/path/to/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); Note : 1. The path '/path/to/errors.txt' should be writable by the web server for errors to be logged there. 2. A separate error file is specified , otherwise all logs would go inside the apache/web server error log and get mixed up with other apache errors. 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver). 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like /var/log dont have to searched. 5. Dont set error_reporting to 0. It will not log anything then. Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file. Set 'display_errors=On' in php.ini on development machine On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page. Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work. Set 'display_errors=Off' in php.ini on production machine Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away. 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results. On a 64 bit machine you can see such output. $ php -aInteractive shellphp > echo strtotime("0000-00-00 00:00:00");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600 But on a 32 bit machine all of them would give bool(false). Check here for more. What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines. 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this : set_time_limit(30);//Rest of the code It may not always work. Any execution that happens outside the script via system calls/os functions like socket operations, database operations etc. will not be under control of set_time_limit. So if a database operation takes lot of time or "hangs" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time. 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it. A better solution : /** Method to execute a command in the terminal Uses : 1. system 2. passthru 3. exec 4. shell_exec*/function terminal($command){ //system if(function_exists('system')) { ob_start(); system($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //passthru else if(function_exists('passthru')) { ob_start(); passthru($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //exec else if(function_exists('exec')) { exec($command , $output , $return_var); $output = implode("\n" , $output); } //shell_exec else if(function_exists('shell_exec')) { $output = shell_exec($command) ; } else { $output = 'Command execution not possible on this system'; $return_var = 1; } return array('output' => $output , 'status' => $return_var);}terminal('ls'); The above function will execute the shell command using whichever function is available , keeping your code consistent. 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user. 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise. Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind. 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily. Few popular libraries are : mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference. 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code. Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community. They contain user feedback, expert advice and useful code snippets. So check them out. 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!! 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc. The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more 1. Codeigniter 2. WordPress 3. Joomla CMS 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment. Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster. Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free. 本站聲明 本文內(nèi)容由網(wǎng)友自發(fā)貢獻,版權(quán)歸原作者所有,本站不承擔相應(yīng)法律責任。如您發(fā)現(xiàn)有涉嫌抄襲侵權(quán)的內(nèi)容,請聯(lián)系admin@php.cn 熱AI工具 Undress AI Tool 免費脫衣服圖片 Undresser.AI Undress 人工智能驅(qū)動的應(yīng)用程序,用于創(chuàng)建逼真的裸體照片 AI Clothes Remover 用于從照片中去除衣服的在線人工智能工具。 Clothoff.io AI脫衣機 Video Face Swap 使用我們完全免費的人工智能換臉工具輕松在任何視頻中換臉! 顯示更多 熱門文章 指南:恒星刀片保存文件位置/保存文件丟失/不保存 4 周前 By DDD Oguri Cap Build Guide |漂亮的德比志 2 周前 By Jack chen Agnes Tachyon Build Guide |漂亮的德比志 1 周前 By Jack chen 沙丘:覺醒 - 高級行星學家Quest演練 4 周前 By Jack chen 約會一切:德克和哈珀關(guān)系指南 4 周前 By Jack chen 顯示更多 熱工具 記事本++7.3.1 好用且免費的代碼編輯器 SublimeText3漢化版 中文版,非常好用 禪工作室 13.0.1 功能強大的PHP集成開發(fā)環(huán)境 Dreamweaver CS6 視覺化網(wǎng)頁開發(fā)工具 SublimeText3 Mac版 神級代碼編輯軟件(SublimeText3) 顯示更多 熱門話題 gmail郵箱登陸入口在哪里 8638 17 Java教程 1783 16 CakePHP 教程 1728 56 Laravel 教程 1578 28 PHP教程 1442 31 顯示更多 Related knowledge 如何在PHP中實施身份驗證和授權(quán)? Jun 20, 2025 am 01:03 AM tosecurelyhandleauthenticationandationallizationInphp,lofterTheSesteps:1.AlwaysHashPasswordSwithPassword_hash()andverifyusingspasspassword_verify(),usepreparedStatatementStopreventsqlineptions,andStoreSeruserDatain usseruserDatain $ _sessiveferterlogin.2.implementrole-2.imaccessccsccccccccccccccccccccccccc. 如何在PHP中安全地處理文件上傳? Jun 19, 2025 am 01:05 AM 要安全處理PHP中的文件上傳,核心在于驗證文件類型、重命名文件并限制權(quán)限。1.使用finfo_file()檢查真實MIME類型,僅允許特定類型如image/jpeg;2.用uniqid()生成隨機文件名,存儲至非Web根目錄;3.通過php.ini和HTML表單限制文件大小,設(shè)置目錄權(quán)限為0755;4.使用ClamAV掃描惡意軟件,增強安全性。這些步驟有效防止安全漏洞,確保文件上傳過程安全可靠。 PHP中==(松散比較)和===(嚴格的比較)之間有什么區(qū)別? Jun 19, 2025 am 01:07 AM 在PHP中,==與===的主要區(qū)別在于類型檢查的嚴格程度。==在比較前會進行類型轉(zhuǎn)換,例如5=="5"返回true,而===要求值和類型都相同才會返回true,例如5==="5"返回false。使用場景上,===更安全應(yīng)優(yōu)先使用,==僅在需要類型轉(zhuǎn)換時使用。 如何在PHP( - , *, /,%)中執(zhí)行算術(shù)操作? Jun 19, 2025 pm 05:13 PM PHP中使用基本數(shù)學運算的方法如下:1.加法用 號,支持整數(shù)和浮點數(shù),也可用于變量,字符串數(shù)字會自動轉(zhuǎn)換但不推薦依賴;2.減法用-號,變量同理,類型轉(zhuǎn)換同樣適用;3.乘法用*號,適用于數(shù)字及類似字符串;4.除法用/號,需避免除以零,并注意結(jié)果可能是浮點數(shù);5.取模用%號,可用于判斷奇偶數(shù),處理負數(shù)時余數(shù)符號與被除數(shù)一致。正確使用這些運算符的關(guān)鍵在于確保數(shù)據(jù)類型清晰并處理好邊界情況。 如何與PHP的NOSQL數(shù)據(jù)庫(例如MongoDB,Redis)進行交互? Jun 19, 2025 am 01:07 AM 是的,PHP可以通過特定擴展或庫與MongoDB和Redis等NoSQL數(shù)據(jù)庫交互。首先,使用MongoDBPHP驅(qū)動(通過PECL或Composer安裝)創(chuàng)建客戶端實例并操作數(shù)據(jù)庫及集合,支持插入、查詢、聚合等操作;其次,使用Predis庫或phpredis擴展連接Redis,執(zhí)行鍵值設(shè)置與獲取,推薦phpredis用于高性能場景,Predis則便于快速部署;兩者均適用于生產(chǎn)環(huán)境且文檔完善。 我如何了解最新的PHP開發(fā)和最佳實踐? Jun 23, 2025 am 12:56 AM TostaycurrentwithPHPdevelopmentsandbestpractices,followkeynewssourceslikePHP.netandPHPWeekly,engagewithcommunitiesonforumsandconferences,keeptoolingupdatedandgraduallyadoptnewfeatures,andreadorcontributetoopensourceprojects.First,followreliablesource 什么是PHP,為什么它用于Web開發(fā)? Jun 23, 2025 am 12:55 AM PHPbecamepopularforwebdevelopmentduetoitseaseoflearning,seamlessintegrationwithHTML,widespreadhostingsupport,andalargeecosystemincludingframeworkslikeLaravelandCMSplatformslikeWordPress.Itexcelsinhandlingformsubmissions,managingusersessions,interacti 如何設(shè)置PHP時區(qū)? Jun 25, 2025 am 01:00 AM tosetTherightTimeZoneInphp,restate_default_timezone_set()functionAtthestArtofyourscriptWithavalIdidentIdentifiersuchas'america/new_york'.1.usedate_default_default_timezone_set_set() See all articles
unset them as soon as possible , so that memory is freed and rest of the script can relax.<\/p>
Here is a simple demonstration of how assign by reference can save memory in some cases<\/p>
';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() \/ 1000000 . '';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() \/ 1000000 . '';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() \/ 1000000 . '';<\/pre> The output on a typical php 5.4 machine is :<\/p> Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 <\/p> So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more.<\/p> 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this :<\/p> function add_to_cart(){ $db = new Database(); $db->query(\"INSERT INTO cart .....\");}function empty_cart(){ $db = new Database(); $db->query(\"DELETE FROM cart .....\");}<\/pre> Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory.<\/p> Use the singleton pattern for special cases like database connection.<\/p> 26. Avoid direct SQL query , abstract it $query = \"INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')\";$db->query($query); \/\/call to mysqli_query()<\/pre> The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like:<\/p> All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord<\/p> It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries.<\/p> A very simple example of an activerecord insert function can be like this :<\/p> function insert_record($table_name , $data){ foreach($data as $key => $value) {\t\/\/mysqli_real_escape_string $data[$key] = $db->mres($value); }\t\t $fields = implode(',' , array_keys($data)); $values = \"'\" . implode(\"','\" , array_values($data)) . \"'\"; \/\/Final query\t $query = \"INSERT INTO {$table}($fields) VALUES($values)\";\t\t return $db->query($query);}\/\/data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);\/\/perform the INSERT queryinsert_record('users' , $data);<\/pre> The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse).<\/p> This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise.<\/p> 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again.<\/p> Benefits :<\/p> Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue.<\/p> Storing session in database makes many other things easier like:<\/p> Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines\/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example :<\/p> <\/head> <\/body><\/html><\/pre> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories.<\/p> Lets take an example<\/p> www.domain.com\/store\/home.php www.domain.com\/store\/products\/ipad.php<\/p> In home.php the following can be written :<\/p> Home<\/a>Ipad<\/a><\/pre> But in ipad.php the links have to be like this :<\/p> Home<\/a>Ipad<\/a><\/pre> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag.<\/p> <\/head>Home<\/a>Ipad<\/a><\/body><\/html><\/pre> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products\/ipad.php<\/p> 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing.<\/p> ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT);<\/pre> On production , the display should be disabled.<\/p> ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark.<\/p> After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set.<\/p> ini_set('log_errors' , '1');ini_set('error_log' , '\/path\/to\/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> Note :<\/p> 1. The path '\/path\/to\/errors.txt' should be writable by the web server for errors to be logged there.<\/p> 2. A separate error file is specified , otherwise all logs would go inside the apache\/web server error log and get mixed up with other apache errors.<\/p> 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver).<\/p> 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like \/var\/log dont have to searched.<\/p> 5. Dont set error_reporting to 0. It will not log anything then.<\/p> Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file.<\/p> Set 'display_errors=On' in php.ini on development machine<\/p> On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page.<\/p> Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work.<\/p> Set 'display_errors=Off' in php.ini on production machine<\/p> Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away.<\/p> 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results.<\/p> On a 64 bit machine you can see such output.<\/p> $ php -aInteractive shellphp > echo strtotime(\"0000-00-00 00:00:00\");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600<\/pre> But on a 32 bit machine all of them would give bool(false). Check here for more.<\/p> What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines.<\/p> 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this :<\/p> set_time_limit(30);\/\/Rest of the code<\/pre> It may not always work. Any execution that happens outside the script via system calls\/os functions like socket operations, database operations etc. will not be under control of set_time_limit.<\/p> So if a database operation takes lot of time or \"hangs\" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time.<\/p> 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it.<\/p> A better solution :<\/p> \/**\tMethod to execute a command in the terminal\tUses :\t1. system\t2. passthru\t3. exec\t4. shell_exec*\/function terminal($command){\t\/\/system\tif(function_exists('system'))\t{\t\tob_start();\t\tsystem($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/passthru\telse if(function_exists('passthru'))\t{\t\tob_start();\t\tpassthru($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/exec\telse if(function_exists('exec'))\t{\t\texec($command , $output , $return_var);\t\t$output = implode(\"\\n\" , $output);\t}\t\/\/shell_exec\telse if(function_exists('shell_exec'))\t{\t\t$output = shell_exec($command) ;\t}\telse\t{\t\t$output = 'Command execution not possible on this system';\t\t$return_var = 1;\t}\treturn array('output' => $output , 'status' => $return_var);}terminal('ls');<\/pre> The above function will execute the shell command using whichever function is available , keeping your code consistent.<\/p> 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user.<\/p> 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise.<\/p> Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind.<\/p> 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily.<\/p> Few popular libraries are :<\/p> mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference.<\/p> 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code.<\/p> Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community.<\/p> They contain user feedback, expert advice and useful code snippets. So check them out.<\/p> 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!!<\/p> 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc.<\/p> The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more<\/p> 1. Codeigniter 2. WordPress 3. Joomla CMS<\/p> 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment.<\/p> Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster.<\/p> Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free.<\/p> "} 社區(qū) 文章 合集 問答 學習 課程 編程詞典 工具庫 開發(fā)工具 網(wǎng)站源碼 PHP 庫 JS特效 網(wǎng)站素材 擴展插件 AI工具 休閑 游戲下載 游戲教程 簡體中文 簡體中文 English 繁體中文 日本語 ??? Melayu Fran?ais Deutsch Login singup 首頁 后端開發(fā) php教程 40+ Useful Php tips for beginners ? Part 1 40+ Useful Php tips for beginners ? Part 1 WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB Jun 23, 2016 pm 02:37 PM PHP學習指南 http://www.binarytides.com/category/php-2/tutorial/ In this series we are going to look into some useful tips and techniques that can be used to improve and optimise your php code. Note that these php tips are meant for beginners and not those who are already using mvc frameworks etc. The Techniques 1. Do not use relative paths , instead define a ROOT path Its quite common to see such lines : require_once('http://www.cnblogs.com/lib/some_class.php'); This approach has many drawbacks : It first searches for directories specified in the include paths of php , then looks from the current directory. So many directories are checked. When a script is included by another script in a different directory , its base directory changes to that of the including script. Another issue , is that when a script is being run from cron , it may not have its parent directory as the working directory. So its a good idea to have absolute paths : define('ROOT' , '/var/www/project/');require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code Now this is an absolute path and will always stay constant. But we can improve this further. The directory /var/www/project can change , so do we change it everytime ? No instead we make it portable using magic constants like __FILE__ . Take a closer look : //suppose your script is /var/www/project/index.php//Then __FILE__ will always have that full path.define('ROOT' , pathinfo(__FILE__, PATHINFO_DIRNAME));require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code So now even if you shift your project to a different directory , like moving it to an online server , the same code will run without any changes. 2. Dont use require , include , require_once or include_once Your script could be including various files on top , like class libraries , files for utility and helper functions etc like this : require_once('lib/Database.php');require_once('lib/Mail.php');require_once('helpers/utitlity_functions.php'); This is rather primitive. The code needs to be more flexible. Write up helper functions to include things more easily. Lets take an example : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); require_once( $path ); }load_class('Database');load_class('Mail'); See any difference ? You must. It does not need any more explanation. You can improve this further if you wish to like this : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); if(file_exists($path)) { require_once( $path ); }} There are a lot of things that can be done with this : Search multiple directories for the same class file. Change the directory containing class files easily , without breaking the code anywhere. Use similar functions for loading files that contain helper functions , html content etc. 3. Maintain debugging environment in your application During development we echo database queries , dump variables which are creating problems , and then once the problem is solved , we comment them or erase them. But its a good idea to let everything stay and help in the long run On your development machine you can do this : define('ENVIRONMENT' , 'development');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } And on the server you can do this : define('ENVIRONMENT' , 'production');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } 4. Propagate status messages via session Status messages are those messages that are generated after doing a task. <?phpif($wrong_username || $wrong_password){ $msg = 'Invalid username or password';}?><html><body><?php echo $msg; ?><form>...</form></body></html> Code like that is common. Using variables to show status messages has limitations. They cannot be send via redirects (unless you propagate them as GET variables to the next script , which is very silly). In large scripts there might be multiple messages etc. Best way is to use session to propagate them (even if on same page). For this there has to be a session_start on every page. function set_flash($msg){ $_SESSION['message'] = $msg;}function get_flash(){ $msg = $_SESSION['message']; unset($_SESSION['message']); return $msg;} and in your script : <?phpif($wrong_username || $wrong_password){ set_flash('Invalid username or password');}?><html><body>Status is : <?php echo get_flash(); ?><form>...</form></body></html> 5. Make your functions flexible function add_to_cart($item_id , $qty){ $_SESSION['cart'][$item_id] = $qty;}add_to_cart( 'IPHONE3' , 2 ); When adding a single item you use the above function. When adding multiple items , will you create another function ? NO. Just make the function flexible enough to take different kinds of parameters. Have a closer look : function add_to_cart($item_id , $qty){ if(!is_array($item_id)) { $_SESSION['cart'][$item_id] = $qty; } else { foreach($item_id as $i_id => $qty) { $_SESSION['cart'][$i_id] = $qty; } }}add_to_cart( 'IPHONE3' , 2 );add_to_cart( array('IPHONE3' => 2 , 'IPAD' => 5) ); So now the same function can accept different kinds of output. The above can be applied in lots of places to make your code more agile. 6. Omit the closing php tag if it is the last thing in a script I wonder why this tip is omitted from so many blog posts on php tips. <?phpecho "Hello";//Now dont close this tag This will save you lots of problem. Lets take an example : A class file super_class.php <?phpclass super_class{ function super_function() { //super code }}?>//super extra character after the closing tag Now index.php require_once('super_class.php');//echo an image or pdf , or set the cookies or session data And you will get Headers already send error. Why ? because the "super extra character" has been echoed , and all headers went along with that. Now you start debugging. You may have to waste many hours to find the super extra space. Hence make it a habit to omit the closing tag : <?phpclass super_class{ function super_function() { //super code }}//No closing tag Thats better. 7. Collect all output at one place , and output at one shot to the browser This is called output buffering. Lets say you have been echoing content from different functions like this : function print_header(){ echo "<div id='header'>Site Log and Login links</div>";}function print_footer(){ echo "<div id='footer'>Site was made by me</div>";}print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}print_footer(); Instead of doing like that , first collect all output in one place. You can either store it inside variables in the functions or use ob_start and ob_end_clean. So now it should look like function print_header(){ $o = "<div id='header'>Site Log and Login links</div>"; return $o;}function print_footer(){ $o = "<div id='footer'>Site was made by me</div>"; return $o;}echo print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}echo print_footer(); So why should you do output buffering : You can change the output just before sending it to browser if you need to. Think about doing some str_replaces , or may be preg_replaces or may be adding some extra html at the end like profiler/debugger output Its a bad idea to send output to browser and do php processing at the same time. Have you ever seen a website where there is a Fatal error in the sidebar or in a box in the middle of the screen. You know why that happens ? Because processing and output are being mixed. 8. Send correct mime types via header when outputting non-html content Lets echo some xml. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataecho $xml; Works fine. But it needs some improvement. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataheader("content-type: text/xml");echo $xml; Note that header line. That line tells the browser that the content is xml content. So the browser can handle it correctly. Many javascript libraries also rely on header information. Similarly for javascript , css , jpg image , png image : Javascript header("content-type: application/x-javascript");echo "var a = 10"; CSS header("content-type: text/css");echo "#div id { background:#000; }"; 9. Set the correct character encoding for a mysql connection Ever faced a problem that unicode/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation. $host = 'localhost';$username = 'root';$password = 'super_secret';//Attempt to connect to database$c = mysqli_connect($host , $username, $password); //Check connection validityif (!$c) { die ("Could not connect to the database host: <br />". mysqli_connect_error());} //Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){ die('mysqli_set_charset() failed');} Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application. Otherwise what will happen ? You will see lots of boxes and ???????? in non english text. 10. Use htmlentities with the correct characterset option Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc. $value = htmlentities($this->value , ENT_QUOTES , 'UTF-8'); Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual. 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php. Use apache mod_gzip/mod_deflate to compress content via the .htaccess file. 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php. $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= "'$image' ,";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;//Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,]; Be smart. use json_encode : $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;//Output is : var images = ["myself.png","friends.png","colleagues.png"] Isn't that neat ? 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of "debugging" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on. Make sure that your application is as intelligent as possible and reports the most important information in the shortest time. $contents = "All the content";$file_path = "/var/www/project/content.txt";file_put_contents($file_path , $contents); That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons : Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file. $contents = "All the content";$dir = '/var/www/project';$file_path = $dir . "/content.txt";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die("Directory $dir is not writable, or does not exist. Please check");} By doing this you get the accurate information that where is a file write failing and why 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are "accessible" outside. Otherwise for example the files may be created by "php" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on. // Read and write for owner, read for everybody elsechmod("/somedir/somefile", 0644);// Everything for owner, read and execute for otherschmod("/somedir/somefile", 0755); 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ //Save the things} The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this : if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ //Save the things} Now you are free from the value the submit button 16. Use static variables in function where they always have same value //Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} Instead use static variables as : //Delay for some timefunction delay(){ static $sync_delay = null; if($sync_delay == null) { $sync_delay = get_option('sync_delay'); } echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} 17. Don't use the $_SESSION variable directly Some simple examples are : $_SESSION['username'] = $username;$username = $_SESSION['username']; But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain. Hence use application specific keys with wrapper functions : define('APP_ID' , 'abc_corp_ecommerce');//Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}//Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;} 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like : function utility_a(){ //This function does a utility thing like string processing}function utility_b(){ //This function does nother utility thing like database processing}function utility_c(){ //This function is ...} And you use the function throughout your application freely. You may want to wrap them into a class as static functions : class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}//and call them as $a = Utility::utility_a();$b = Utility::utility_b(); One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else. 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++; Its absolutely a WASTE. Write if($a == true){ $a_count++;} Dont try to make your code shorter by eating up syntax. Rather make your logic shorter. Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this : foreach($arr as $c => $v){ $arr[$c] = trim($v);} But it can more cleaner with array_map : $arr = array_map('trim' , $arr); This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more. 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters. The php filter extension provides simple way to validate or check values as being a valid 'something'. 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate']; Its a good habit. 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded : $db_records_in_array_format; //This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; //2MB moresome_function($cc); //Another 2MB ? The above thing is common when importing a csv file or exporting table to a csv file Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays. Consider passing them by reference , or storing them in a class variable : $a = get_large_array();pass_to_function(&$a); by doing this the same variable (and not its copy) will be available to the function. Check documentation class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { //process $this->a }} unset them as soon as possible , so that memory is freed and rest of the script can relax. Here is a simple demonstration of how assign by reference can save memory in some cases <?phpini_set('display_errors' , true);error_reporting(E_ALL);$a = array();for($i = 0; $i < 100000 ; $i++){ $a[$i] = 'A'.$i;}echo 'Memory usage in MB : '. memory_get_usage() / 1000000 . '<br />';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() / 1000000 . '<br />';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() / 1000000 . '<br />';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() / 1000000 . '<br />'; The output on a typical php 5.4 machine is : Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more. 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this : function add_to_cart(){ $db = new Database(); $db->query("INSERT INTO cart .....");}function empty_cart(){ $db = new Database(); $db->query("DELETE FROM cart .....");} Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory. Use the singleton pattern for special cases like database connection. 26. Avoid direct SQL query , abstract it $query = "INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')";$db->query($query); //call to mysqli_query() The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like: All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries. A very simple example of an activerecord insert function can be like this : function insert_record($table_name , $data){ foreach($data as $key => $value) { //mysqli_real_escape_string $data[$key] = $db->mres($value); } $fields = implode(',' , array_keys($data)); $values = "'" . implode("','" , array_values($data)) . "'"; //Final query $query = "INSERT INTO {$table}($fields) VALUES($values)"; return $db->query($query);}//data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);//perform the INSERT queryinsert_record('users' , $data); The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse). This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise. 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again. Benefits : Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue. Storing session in database makes many other things easier like: Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example : <head> <base href="http://www.domain.com/store/"></head><body> <img src="/static/imghw/default1.png" data-src="happy.jpg" class="lazy" / alt="40+ Useful Php tips for beginners ? Part 1" ></body></html> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories. Lets take an example www.domain.com/store/home.php www.domain.com/store/products/ipad.php In home.php the following can be written : <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> But in ipad.php the links have to be like this : <a href="../home.php">Home</a><a href="ipad.php">Ipad</a> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag. <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products/ipad.php 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing. ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT); On production , the display should be disabled. ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark. After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set. ini_set('log_errors' , '1');ini_set('error_log' , '/path/to/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); Note : 1. The path '/path/to/errors.txt' should be writable by the web server for errors to be logged there. 2. A separate error file is specified , otherwise all logs would go inside the apache/web server error log and get mixed up with other apache errors. 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver). 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like /var/log dont have to searched. 5. Dont set error_reporting to 0. It will not log anything then. Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file. Set 'display_errors=On' in php.ini on development machine On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page. Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work. Set 'display_errors=Off' in php.ini on production machine Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away. 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results. On a 64 bit machine you can see such output. $ php -aInteractive shellphp > echo strtotime("0000-00-00 00:00:00");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600 But on a 32 bit machine all of them would give bool(false). Check here for more. What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines. 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this : set_time_limit(30);//Rest of the code It may not always work. Any execution that happens outside the script via system calls/os functions like socket operations, database operations etc. will not be under control of set_time_limit. So if a database operation takes lot of time or "hangs" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time. 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it. A better solution : /** Method to execute a command in the terminal Uses : 1. system 2. passthru 3. exec 4. shell_exec*/function terminal($command){ //system if(function_exists('system')) { ob_start(); system($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //passthru else if(function_exists('passthru')) { ob_start(); passthru($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //exec else if(function_exists('exec')) { exec($command , $output , $return_var); $output = implode("\n" , $output); } //shell_exec else if(function_exists('shell_exec')) { $output = shell_exec($command) ; } else { $output = 'Command execution not possible on this system'; $return_var = 1; } return array('output' => $output , 'status' => $return_var);}terminal('ls'); The above function will execute the shell command using whichever function is available , keeping your code consistent. 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user. 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise. Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind. 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily. Few popular libraries are : mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference. 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code. Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community. They contain user feedback, expert advice and useful code snippets. So check them out. 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!! 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc. The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more 1. Codeigniter 2. WordPress 3. Joomla CMS 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment. Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster. Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free. 本站聲明 本文內(nèi)容由網(wǎng)友自發(fā)貢獻,版權(quán)歸原作者所有,本站不承擔相應(yīng)法律責任。如您發(fā)現(xiàn)有涉嫌抄襲侵權(quán)的內(nèi)容,請聯(lián)系admin@php.cn 熱AI工具 Undress AI Tool 免費脫衣服圖片 Undresser.AI Undress 人工智能驅(qū)動的應(yīng)用程序,用于創(chuàng)建逼真的裸體照片 AI Clothes Remover 用于從照片中去除衣服的在線人工智能工具。 Clothoff.io AI脫衣機 Video Face Swap 使用我們完全免費的人工智能換臉工具輕松在任何視頻中換臉! 顯示更多 熱門文章 指南:恒星刀片保存文件位置/保存文件丟失/不保存 4 周前 By DDD Oguri Cap Build Guide |漂亮的德比志 2 周前 By Jack chen Agnes Tachyon Build Guide |漂亮的德比志 1 周前 By Jack chen 沙丘:覺醒 - 高級行星學家Quest演練 4 周前 By Jack chen 約會一切:德克和哈珀關(guān)系指南 4 周前 By Jack chen 顯示更多 熱工具 記事本++7.3.1 好用且免費的代碼編輯器 SublimeText3漢化版 中文版,非常好用 禪工作室 13.0.1 功能強大的PHP集成開發(fā)環(huán)境 Dreamweaver CS6 視覺化網(wǎng)頁開發(fā)工具 SublimeText3 Mac版 神級代碼編輯軟件(SublimeText3) 顯示更多 熱門話題 gmail郵箱登陸入口在哪里 8638 17 Java教程 1783 16 CakePHP 教程 1728 56 Laravel 教程 1578 28 PHP教程 1442 31 顯示更多 Related knowledge 如何在PHP中實施身份驗證和授權(quán)? Jun 20, 2025 am 01:03 AM tosecurelyhandleauthenticationandationallizationInphp,lofterTheSesteps:1.AlwaysHashPasswordSwithPassword_hash()andverifyusingspasspassword_verify(),usepreparedStatatementStopreventsqlineptions,andStoreSeruserDatain usseruserDatain $ _sessiveferterlogin.2.implementrole-2.imaccessccsccccccccccccccccccccccccc. 如何在PHP中安全地處理文件上傳? Jun 19, 2025 am 01:05 AM 要安全處理PHP中的文件上傳,核心在于驗證文件類型、重命名文件并限制權(quán)限。1.使用finfo_file()檢查真實MIME類型,僅允許特定類型如image/jpeg;2.用uniqid()生成隨機文件名,存儲至非Web根目錄;3.通過php.ini和HTML表單限制文件大小,設(shè)置目錄權(quán)限為0755;4.使用ClamAV掃描惡意軟件,增強安全性。這些步驟有效防止安全漏洞,確保文件上傳過程安全可靠。 PHP中==(松散比較)和===(嚴格的比較)之間有什么區(qū)別? Jun 19, 2025 am 01:07 AM 在PHP中,==與===的主要區(qū)別在于類型檢查的嚴格程度。==在比較前會進行類型轉(zhuǎn)換,例如5=="5"返回true,而===要求值和類型都相同才會返回true,例如5==="5"返回false。使用場景上,===更安全應(yīng)優(yōu)先使用,==僅在需要類型轉(zhuǎn)換時使用。 如何在PHP( - , *, /,%)中執(zhí)行算術(shù)操作? Jun 19, 2025 pm 05:13 PM PHP中使用基本數(shù)學運算的方法如下:1.加法用 號,支持整數(shù)和浮點數(shù),也可用于變量,字符串數(shù)字會自動轉(zhuǎn)換但不推薦依賴;2.減法用-號,變量同理,類型轉(zhuǎn)換同樣適用;3.乘法用*號,適用于數(shù)字及類似字符串;4.除法用/號,需避免除以零,并注意結(jié)果可能是浮點數(shù);5.取模用%號,可用于判斷奇偶數(shù),處理負數(shù)時余數(shù)符號與被除數(shù)一致。正確使用這些運算符的關(guān)鍵在于確保數(shù)據(jù)類型清晰并處理好邊界情況。 如何與PHP的NOSQL數(shù)據(jù)庫(例如MongoDB,Redis)進行交互? Jun 19, 2025 am 01:07 AM 是的,PHP可以通過特定擴展或庫與MongoDB和Redis等NoSQL數(shù)據(jù)庫交互。首先,使用MongoDBPHP驅(qū)動(通過PECL或Composer安裝)創(chuàng)建客戶端實例并操作數(shù)據(jù)庫及集合,支持插入、查詢、聚合等操作;其次,使用Predis庫或phpredis擴展連接Redis,執(zhí)行鍵值設(shè)置與獲取,推薦phpredis用于高性能場景,Predis則便于快速部署;兩者均適用于生產(chǎn)環(huán)境且文檔完善。 我如何了解最新的PHP開發(fā)和最佳實踐? Jun 23, 2025 am 12:56 AM TostaycurrentwithPHPdevelopmentsandbestpractices,followkeynewssourceslikePHP.netandPHPWeekly,engagewithcommunitiesonforumsandconferences,keeptoolingupdatedandgraduallyadoptnewfeatures,andreadorcontributetoopensourceprojects.First,followreliablesource 什么是PHP,為什么它用于Web開發(fā)? Jun 23, 2025 am 12:55 AM PHPbecamepopularforwebdevelopmentduetoitseaseoflearning,seamlessintegrationwithHTML,widespreadhostingsupport,andalargeecosystemincludingframeworkslikeLaravelandCMSplatformslikeWordPress.Itexcelsinhandlingformsubmissions,managingusersessions,interacti 如何設(shè)置PHP時區(qū)? Jun 25, 2025 am 01:00 AM tosetTherightTimeZoneInphp,restate_default_timezone_set()functionAtthestArtofyourscriptWithavalIdidentIdentifiersuchas'america/new_york'.1.usedate_default_default_timezone_set_set() See all articles
The output on a typical php 5.4 machine is :<\/p>
Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 <\/p>
So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more.<\/p> 25. Use a single database connection, throughout the script
Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this :<\/p>
function add_to_cart(){ $db = new Database(); $db->query(\"INSERT INTO cart .....\");}function empty_cart(){ $db = new Database(); $db->query(\"DELETE FROM cart .....\");}<\/pre> Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory.<\/p> Use the singleton pattern for special cases like database connection.<\/p> 26. Avoid direct SQL query , abstract it $query = \"INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')\";$db->query($query); \/\/call to mysqli_query()<\/pre> The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like:<\/p> All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord<\/p> It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries.<\/p> A very simple example of an activerecord insert function can be like this :<\/p> function insert_record($table_name , $data){ foreach($data as $key => $value) {\t\/\/mysqli_real_escape_string $data[$key] = $db->mres($value); }\t\t $fields = implode(',' , array_keys($data)); $values = \"'\" . implode(\"','\" , array_values($data)) . \"'\"; \/\/Final query\t $query = \"INSERT INTO {$table}($fields) VALUES($values)\";\t\t return $db->query($query);}\/\/data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);\/\/perform the INSERT queryinsert_record('users' , $data);<\/pre> The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse).<\/p> This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise.<\/p> 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again.<\/p> Benefits :<\/p> Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue.<\/p> Storing session in database makes many other things easier like:<\/p> Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines\/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example :<\/p> <\/head> <\/body><\/html><\/pre> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories.<\/p> Lets take an example<\/p> www.domain.com\/store\/home.php www.domain.com\/store\/products\/ipad.php<\/p> In home.php the following can be written :<\/p> Home<\/a>Ipad<\/a><\/pre> But in ipad.php the links have to be like this :<\/p> Home<\/a>Ipad<\/a><\/pre> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag.<\/p> <\/head>Home<\/a>Ipad<\/a><\/body><\/html><\/pre> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products\/ipad.php<\/p> 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing.<\/p> ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT);<\/pre> On production , the display should be disabled.<\/p> ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark.<\/p> After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set.<\/p> ini_set('log_errors' , '1');ini_set('error_log' , '\/path\/to\/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> Note :<\/p> 1. The path '\/path\/to\/errors.txt' should be writable by the web server for errors to be logged there.<\/p> 2. A separate error file is specified , otherwise all logs would go inside the apache\/web server error log and get mixed up with other apache errors.<\/p> 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver).<\/p> 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like \/var\/log dont have to searched.<\/p> 5. Dont set error_reporting to 0. It will not log anything then.<\/p> Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file.<\/p> Set 'display_errors=On' in php.ini on development machine<\/p> On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page.<\/p> Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work.<\/p> Set 'display_errors=Off' in php.ini on production machine<\/p> Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away.<\/p> 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results.<\/p> On a 64 bit machine you can see such output.<\/p> $ php -aInteractive shellphp > echo strtotime(\"0000-00-00 00:00:00\");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600<\/pre> But on a 32 bit machine all of them would give bool(false). Check here for more.<\/p> What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines.<\/p> 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this :<\/p> set_time_limit(30);\/\/Rest of the code<\/pre> It may not always work. Any execution that happens outside the script via system calls\/os functions like socket operations, database operations etc. will not be under control of set_time_limit.<\/p> So if a database operation takes lot of time or \"hangs\" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time.<\/p> 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it.<\/p> A better solution :<\/p> \/**\tMethod to execute a command in the terminal\tUses :\t1. system\t2. passthru\t3. exec\t4. shell_exec*\/function terminal($command){\t\/\/system\tif(function_exists('system'))\t{\t\tob_start();\t\tsystem($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/passthru\telse if(function_exists('passthru'))\t{\t\tob_start();\t\tpassthru($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/exec\telse if(function_exists('exec'))\t{\t\texec($command , $output , $return_var);\t\t$output = implode(\"\\n\" , $output);\t}\t\/\/shell_exec\telse if(function_exists('shell_exec'))\t{\t\t$output = shell_exec($command) ;\t}\telse\t{\t\t$output = 'Command execution not possible on this system';\t\t$return_var = 1;\t}\treturn array('output' => $output , 'status' => $return_var);}terminal('ls');<\/pre> The above function will execute the shell command using whichever function is available , keeping your code consistent.<\/p> 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user.<\/p> 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise.<\/p> Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind.<\/p> 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily.<\/p> Few popular libraries are :<\/p> mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference.<\/p> 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code.<\/p> Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community.<\/p> They contain user feedback, expert advice and useful code snippets. So check them out.<\/p> 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!!<\/p> 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc.<\/p> The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more<\/p> 1. Codeigniter 2. WordPress 3. Joomla CMS<\/p> 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment.<\/p> Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster.<\/p> Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free.<\/p> "} 社區(qū) 文章 合集 問答 學習 課程 編程詞典 工具庫 開發(fā)工具 網(wǎng)站源碼 PHP 庫 JS特效 網(wǎng)站素材 擴展插件 AI工具 休閑 游戲下載 游戲教程 簡體中文 簡體中文 English 繁體中文 日本語 ??? Melayu Fran?ais Deutsch Login singup 首頁 后端開發(fā) php教程 40+ Useful Php tips for beginners ? Part 1 40+ Useful Php tips for beginners ? Part 1 WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB Jun 23, 2016 pm 02:37 PM PHP學習指南 http://www.binarytides.com/category/php-2/tutorial/ In this series we are going to look into some useful tips and techniques that can be used to improve and optimise your php code. Note that these php tips are meant for beginners and not those who are already using mvc frameworks etc. The Techniques 1. Do not use relative paths , instead define a ROOT path Its quite common to see such lines : require_once('http://www.cnblogs.com/lib/some_class.php'); This approach has many drawbacks : It first searches for directories specified in the include paths of php , then looks from the current directory. So many directories are checked. When a script is included by another script in a different directory , its base directory changes to that of the including script. Another issue , is that when a script is being run from cron , it may not have its parent directory as the working directory. So its a good idea to have absolute paths : define('ROOT' , '/var/www/project/');require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code Now this is an absolute path and will always stay constant. But we can improve this further. The directory /var/www/project can change , so do we change it everytime ? No instead we make it portable using magic constants like __FILE__ . Take a closer look : //suppose your script is /var/www/project/index.php//Then __FILE__ will always have that full path.define('ROOT' , pathinfo(__FILE__, PATHINFO_DIRNAME));require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code So now even if you shift your project to a different directory , like moving it to an online server , the same code will run without any changes. 2. Dont use require , include , require_once or include_once Your script could be including various files on top , like class libraries , files for utility and helper functions etc like this : require_once('lib/Database.php');require_once('lib/Mail.php');require_once('helpers/utitlity_functions.php'); This is rather primitive. The code needs to be more flexible. Write up helper functions to include things more easily. Lets take an example : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); require_once( $path ); }load_class('Database');load_class('Mail'); See any difference ? You must. It does not need any more explanation. You can improve this further if you wish to like this : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); if(file_exists($path)) { require_once( $path ); }} There are a lot of things that can be done with this : Search multiple directories for the same class file. Change the directory containing class files easily , without breaking the code anywhere. Use similar functions for loading files that contain helper functions , html content etc. 3. Maintain debugging environment in your application During development we echo database queries , dump variables which are creating problems , and then once the problem is solved , we comment them or erase them. But its a good idea to let everything stay and help in the long run On your development machine you can do this : define('ENVIRONMENT' , 'development');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } And on the server you can do this : define('ENVIRONMENT' , 'production');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } 4. Propagate status messages via session Status messages are those messages that are generated after doing a task. <?phpif($wrong_username || $wrong_password){ $msg = 'Invalid username or password';}?><html><body><?php echo $msg; ?><form>...</form></body></html> Code like that is common. Using variables to show status messages has limitations. They cannot be send via redirects (unless you propagate them as GET variables to the next script , which is very silly). In large scripts there might be multiple messages etc. Best way is to use session to propagate them (even if on same page). For this there has to be a session_start on every page. function set_flash($msg){ $_SESSION['message'] = $msg;}function get_flash(){ $msg = $_SESSION['message']; unset($_SESSION['message']); return $msg;} and in your script : <?phpif($wrong_username || $wrong_password){ set_flash('Invalid username or password');}?><html><body>Status is : <?php echo get_flash(); ?><form>...</form></body></html> 5. Make your functions flexible function add_to_cart($item_id , $qty){ $_SESSION['cart'][$item_id] = $qty;}add_to_cart( 'IPHONE3' , 2 ); When adding a single item you use the above function. When adding multiple items , will you create another function ? NO. Just make the function flexible enough to take different kinds of parameters. Have a closer look : function add_to_cart($item_id , $qty){ if(!is_array($item_id)) { $_SESSION['cart'][$item_id] = $qty; } else { foreach($item_id as $i_id => $qty) { $_SESSION['cart'][$i_id] = $qty; } }}add_to_cart( 'IPHONE3' , 2 );add_to_cart( array('IPHONE3' => 2 , 'IPAD' => 5) ); So now the same function can accept different kinds of output. The above can be applied in lots of places to make your code more agile. 6. Omit the closing php tag if it is the last thing in a script I wonder why this tip is omitted from so many blog posts on php tips. <?phpecho "Hello";//Now dont close this tag This will save you lots of problem. Lets take an example : A class file super_class.php <?phpclass super_class{ function super_function() { //super code }}?>//super extra character after the closing tag Now index.php require_once('super_class.php');//echo an image or pdf , or set the cookies or session data And you will get Headers already send error. Why ? because the "super extra character" has been echoed , and all headers went along with that. Now you start debugging. You may have to waste many hours to find the super extra space. Hence make it a habit to omit the closing tag : <?phpclass super_class{ function super_function() { //super code }}//No closing tag Thats better. 7. Collect all output at one place , and output at one shot to the browser This is called output buffering. Lets say you have been echoing content from different functions like this : function print_header(){ echo "<div id='header'>Site Log and Login links</div>";}function print_footer(){ echo "<div id='footer'>Site was made by me</div>";}print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}print_footer(); Instead of doing like that , first collect all output in one place. You can either store it inside variables in the functions or use ob_start and ob_end_clean. So now it should look like function print_header(){ $o = "<div id='header'>Site Log and Login links</div>"; return $o;}function print_footer(){ $o = "<div id='footer'>Site was made by me</div>"; return $o;}echo print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}echo print_footer(); So why should you do output buffering : You can change the output just before sending it to browser if you need to. Think about doing some str_replaces , or may be preg_replaces or may be adding some extra html at the end like profiler/debugger output Its a bad idea to send output to browser and do php processing at the same time. Have you ever seen a website where there is a Fatal error in the sidebar or in a box in the middle of the screen. You know why that happens ? Because processing and output are being mixed. 8. Send correct mime types via header when outputting non-html content Lets echo some xml. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataecho $xml; Works fine. But it needs some improvement. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataheader("content-type: text/xml");echo $xml; Note that header line. That line tells the browser that the content is xml content. So the browser can handle it correctly. Many javascript libraries also rely on header information. Similarly for javascript , css , jpg image , png image : Javascript header("content-type: application/x-javascript");echo "var a = 10"; CSS header("content-type: text/css");echo "#div id { background:#000; }"; 9. Set the correct character encoding for a mysql connection Ever faced a problem that unicode/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation. $host = 'localhost';$username = 'root';$password = 'super_secret';//Attempt to connect to database$c = mysqli_connect($host , $username, $password); //Check connection validityif (!$c) { die ("Could not connect to the database host: <br />". mysqli_connect_error());} //Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){ die('mysqli_set_charset() failed');} Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application. Otherwise what will happen ? You will see lots of boxes and ???????? in non english text. 10. Use htmlentities with the correct characterset option Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc. $value = htmlentities($this->value , ENT_QUOTES , 'UTF-8'); Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual. 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php. Use apache mod_gzip/mod_deflate to compress content via the .htaccess file. 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php. $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= "'$image' ,";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;//Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,]; Be smart. use json_encode : $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;//Output is : var images = ["myself.png","friends.png","colleagues.png"] Isn't that neat ? 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of "debugging" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on. Make sure that your application is as intelligent as possible and reports the most important information in the shortest time. $contents = "All the content";$file_path = "/var/www/project/content.txt";file_put_contents($file_path , $contents); That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons : Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file. $contents = "All the content";$dir = '/var/www/project';$file_path = $dir . "/content.txt";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die("Directory $dir is not writable, or does not exist. Please check");} By doing this you get the accurate information that where is a file write failing and why 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are "accessible" outside. Otherwise for example the files may be created by "php" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on. // Read and write for owner, read for everybody elsechmod("/somedir/somefile", 0644);// Everything for owner, read and execute for otherschmod("/somedir/somefile", 0755); 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ //Save the things} The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this : if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ //Save the things} Now you are free from the value the submit button 16. Use static variables in function where they always have same value //Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} Instead use static variables as : //Delay for some timefunction delay(){ static $sync_delay = null; if($sync_delay == null) { $sync_delay = get_option('sync_delay'); } echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} 17. Don't use the $_SESSION variable directly Some simple examples are : $_SESSION['username'] = $username;$username = $_SESSION['username']; But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain. Hence use application specific keys with wrapper functions : define('APP_ID' , 'abc_corp_ecommerce');//Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}//Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;} 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like : function utility_a(){ //This function does a utility thing like string processing}function utility_b(){ //This function does nother utility thing like database processing}function utility_c(){ //This function is ...} And you use the function throughout your application freely. You may want to wrap them into a class as static functions : class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}//and call them as $a = Utility::utility_a();$b = Utility::utility_b(); One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else. 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++; Its absolutely a WASTE. Write if($a == true){ $a_count++;} Dont try to make your code shorter by eating up syntax. Rather make your logic shorter. Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this : foreach($arr as $c => $v){ $arr[$c] = trim($v);} But it can more cleaner with array_map : $arr = array_map('trim' , $arr); This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more. 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters. The php filter extension provides simple way to validate or check values as being a valid 'something'. 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate']; Its a good habit. 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded : $db_records_in_array_format; //This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; //2MB moresome_function($cc); //Another 2MB ? The above thing is common when importing a csv file or exporting table to a csv file Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays. Consider passing them by reference , or storing them in a class variable : $a = get_large_array();pass_to_function(&$a); by doing this the same variable (and not its copy) will be available to the function. Check documentation class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { //process $this->a }} unset them as soon as possible , so that memory is freed and rest of the script can relax. Here is a simple demonstration of how assign by reference can save memory in some cases <?phpini_set('display_errors' , true);error_reporting(E_ALL);$a = array();for($i = 0; $i < 100000 ; $i++){ $a[$i] = 'A'.$i;}echo 'Memory usage in MB : '. memory_get_usage() / 1000000 . '<br />';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() / 1000000 . '<br />';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() / 1000000 . '<br />';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() / 1000000 . '<br />'; The output on a typical php 5.4 machine is : Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more. 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this : function add_to_cart(){ $db = new Database(); $db->query("INSERT INTO cart .....");}function empty_cart(){ $db = new Database(); $db->query("DELETE FROM cart .....");} Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory. Use the singleton pattern for special cases like database connection. 26. Avoid direct SQL query , abstract it $query = "INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')";$db->query($query); //call to mysqli_query() The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like: All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries. A very simple example of an activerecord insert function can be like this : function insert_record($table_name , $data){ foreach($data as $key => $value) { //mysqli_real_escape_string $data[$key] = $db->mres($value); } $fields = implode(',' , array_keys($data)); $values = "'" . implode("','" , array_values($data)) . "'"; //Final query $query = "INSERT INTO {$table}($fields) VALUES($values)"; return $db->query($query);}//data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);//perform the INSERT queryinsert_record('users' , $data); The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse). This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise. 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again. Benefits : Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue. Storing session in database makes many other things easier like: Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example : <head> <base href="http://www.domain.com/store/"></head><body> <img src="/static/imghw/default1.png" data-src="happy.jpg" class="lazy" / alt="40+ Useful Php tips for beginners ? Part 1" ></body></html> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories. Lets take an example www.domain.com/store/home.php www.domain.com/store/products/ipad.php In home.php the following can be written : <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> But in ipad.php the links have to be like this : <a href="../home.php">Home</a><a href="ipad.php">Ipad</a> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag. <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products/ipad.php 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing. ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT); On production , the display should be disabled. ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark. After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set. ini_set('log_errors' , '1');ini_set('error_log' , '/path/to/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); Note : 1. The path '/path/to/errors.txt' should be writable by the web server for errors to be logged there. 2. A separate error file is specified , otherwise all logs would go inside the apache/web server error log and get mixed up with other apache errors. 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver). 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like /var/log dont have to searched. 5. Dont set error_reporting to 0. It will not log anything then. Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file. Set 'display_errors=On' in php.ini on development machine On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page. Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work. Set 'display_errors=Off' in php.ini on production machine Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away. 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results. On a 64 bit machine you can see such output. $ php -aInteractive shellphp > echo strtotime("0000-00-00 00:00:00");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600 But on a 32 bit machine all of them would give bool(false). Check here for more. What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines. 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this : set_time_limit(30);//Rest of the code It may not always work. Any execution that happens outside the script via system calls/os functions like socket operations, database operations etc. will not be under control of set_time_limit. So if a database operation takes lot of time or "hangs" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time. 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it. A better solution : /** Method to execute a command in the terminal Uses : 1. system 2. passthru 3. exec 4. shell_exec*/function terminal($command){ //system if(function_exists('system')) { ob_start(); system($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //passthru else if(function_exists('passthru')) { ob_start(); passthru($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //exec else if(function_exists('exec')) { exec($command , $output , $return_var); $output = implode("\n" , $output); } //shell_exec else if(function_exists('shell_exec')) { $output = shell_exec($command) ; } else { $output = 'Command execution not possible on this system'; $return_var = 1; } return array('output' => $output , 'status' => $return_var);}terminal('ls'); The above function will execute the shell command using whichever function is available , keeping your code consistent. 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user. 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise. Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind. 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily. Few popular libraries are : mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference. 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code. Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community. They contain user feedback, expert advice and useful code snippets. So check them out. 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!! 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc. The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more 1. Codeigniter 2. WordPress 3. Joomla CMS 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment. Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster. Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free. 本站聲明 本文內(nèi)容由網(wǎng)友自發(fā)貢獻,版權(quán)歸原作者所有,本站不承擔相應(yīng)法律責任。如您發(fā)現(xiàn)有涉嫌抄襲侵權(quán)的內(nèi)容,請聯(lián)系admin@php.cn 熱AI工具 Undress AI Tool 免費脫衣服圖片 Undresser.AI Undress 人工智能驅(qū)動的應(yīng)用程序,用于創(chuàng)建逼真的裸體照片 AI Clothes Remover 用于從照片中去除衣服的在線人工智能工具。 Clothoff.io AI脫衣機 Video Face Swap 使用我們完全免費的人工智能換臉工具輕松在任何視頻中換臉! 顯示更多 熱門文章 指南:恒星刀片保存文件位置/保存文件丟失/不保存 4 周前 By DDD Oguri Cap Build Guide |漂亮的德比志 2 周前 By Jack chen Agnes Tachyon Build Guide |漂亮的德比志 1 周前 By Jack chen 沙丘:覺醒 - 高級行星學家Quest演練 4 周前 By Jack chen 約會一切:德克和哈珀關(guān)系指南 4 周前 By Jack chen 顯示更多 熱工具 記事本++7.3.1 好用且免費的代碼編輯器 SublimeText3漢化版 中文版,非常好用 禪工作室 13.0.1 功能強大的PHP集成開發(fā)環(huán)境 Dreamweaver CS6 視覺化網(wǎng)頁開發(fā)工具 SublimeText3 Mac版 神級代碼編輯軟件(SublimeText3) 顯示更多 熱門話題 gmail郵箱登陸入口在哪里 8638 17 Java教程 1783 16 CakePHP 教程 1728 56 Laravel 教程 1578 28 PHP教程 1442 31 顯示更多 Related knowledge 如何在PHP中實施身份驗證和授權(quán)? Jun 20, 2025 am 01:03 AM tosecurelyhandleauthenticationandationallizationInphp,lofterTheSesteps:1.AlwaysHashPasswordSwithPassword_hash()andverifyusingspasspassword_verify(),usepreparedStatatementStopreventsqlineptions,andStoreSeruserDatain usseruserDatain $ _sessiveferterlogin.2.implementrole-2.imaccessccsccccccccccccccccccccccccc. 如何在PHP中安全地處理文件上傳? Jun 19, 2025 am 01:05 AM 要安全處理PHP中的文件上傳,核心在于驗證文件類型、重命名文件并限制權(quán)限。1.使用finfo_file()檢查真實MIME類型,僅允許特定類型如image/jpeg;2.用uniqid()生成隨機文件名,存儲至非Web根目錄;3.通過php.ini和HTML表單限制文件大小,設(shè)置目錄權(quán)限為0755;4.使用ClamAV掃描惡意軟件,增強安全性。這些步驟有效防止安全漏洞,確保文件上傳過程安全可靠。 PHP中==(松散比較)和===(嚴格的比較)之間有什么區(qū)別? Jun 19, 2025 am 01:07 AM 在PHP中,==與===的主要區(qū)別在于類型檢查的嚴格程度。==在比較前會進行類型轉(zhuǎn)換,例如5=="5"返回true,而===要求值和類型都相同才會返回true,例如5==="5"返回false。使用場景上,===更安全應(yīng)優(yōu)先使用,==僅在需要類型轉(zhuǎn)換時使用。 如何在PHP( - , *, /,%)中執(zhí)行算術(shù)操作? Jun 19, 2025 pm 05:13 PM PHP中使用基本數(shù)學運算的方法如下:1.加法用 號,支持整數(shù)和浮點數(shù),也可用于變量,字符串數(shù)字會自動轉(zhuǎn)換但不推薦依賴;2.減法用-號,變量同理,類型轉(zhuǎn)換同樣適用;3.乘法用*號,適用于數(shù)字及類似字符串;4.除法用/號,需避免除以零,并注意結(jié)果可能是浮點數(shù);5.取模用%號,可用于判斷奇偶數(shù),處理負數(shù)時余數(shù)符號與被除數(shù)一致。正確使用這些運算符的關(guān)鍵在于確保數(shù)據(jù)類型清晰并處理好邊界情況。 如何與PHP的NOSQL數(shù)據(jù)庫(例如MongoDB,Redis)進行交互? Jun 19, 2025 am 01:07 AM 是的,PHP可以通過特定擴展或庫與MongoDB和Redis等NoSQL數(shù)據(jù)庫交互。首先,使用MongoDBPHP驅(qū)動(通過PECL或Composer安裝)創(chuàng)建客戶端實例并操作數(shù)據(jù)庫及集合,支持插入、查詢、聚合等操作;其次,使用Predis庫或phpredis擴展連接Redis,執(zhí)行鍵值設(shè)置與獲取,推薦phpredis用于高性能場景,Predis則便于快速部署;兩者均適用于生產(chǎn)環(huán)境且文檔完善。 我如何了解最新的PHP開發(fā)和最佳實踐? Jun 23, 2025 am 12:56 AM TostaycurrentwithPHPdevelopmentsandbestpractices,followkeynewssourceslikePHP.netandPHPWeekly,engagewithcommunitiesonforumsandconferences,keeptoolingupdatedandgraduallyadoptnewfeatures,andreadorcontributetoopensourceprojects.First,followreliablesource 什么是PHP,為什么它用于Web開發(fā)? Jun 23, 2025 am 12:55 AM PHPbecamepopularforwebdevelopmentduetoitseaseoflearning,seamlessintegrationwithHTML,widespreadhostingsupport,andalargeecosystemincludingframeworkslikeLaravelandCMSplatformslikeWordPress.Itexcelsinhandlingformsubmissions,managingusersessions,interacti 如何設(shè)置PHP時區(qū)? Jun 25, 2025 am 01:00 AM tosetTherightTimeZoneInphp,restate_default_timezone_set()functionAtthestArtofyourscriptWithavalIdidentIdentifiersuchas'america/new_york'.1.usedate_default_default_timezone_set_set() See all articles
Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory.<\/p>
Use the singleton pattern for special cases like database connection.<\/p> 26. Avoid direct SQL query , abstract it
$query = \"INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')\";$db->query($query); \/\/call to mysqli_query()<\/pre> The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like:<\/p> All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord<\/p> It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries.<\/p> A very simple example of an activerecord insert function can be like this :<\/p> function insert_record($table_name , $data){ foreach($data as $key => $value) {\t\/\/mysqli_real_escape_string $data[$key] = $db->mres($value); }\t\t $fields = implode(',' , array_keys($data)); $values = \"'\" . implode(\"','\" , array_values($data)) . \"'\"; \/\/Final query\t $query = \"INSERT INTO {$table}($fields) VALUES($values)\";\t\t return $db->query($query);}\/\/data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);\/\/perform the INSERT queryinsert_record('users' , $data);<\/pre> The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse).<\/p> This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise.<\/p> 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again.<\/p> Benefits :<\/p> Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue.<\/p> Storing session in database makes many other things easier like:<\/p> Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines\/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example :<\/p> <\/head> <\/body><\/html><\/pre> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories.<\/p> Lets take an example<\/p> www.domain.com\/store\/home.php www.domain.com\/store\/products\/ipad.php<\/p> In home.php the following can be written :<\/p> Home<\/a>Ipad<\/a><\/pre> But in ipad.php the links have to be like this :<\/p> Home<\/a>Ipad<\/a><\/pre> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag.<\/p> <\/head>Home<\/a>Ipad<\/a><\/body><\/html><\/pre> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products\/ipad.php<\/p> 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing.<\/p> ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT);<\/pre> On production , the display should be disabled.<\/p> ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark.<\/p> After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set.<\/p> ini_set('log_errors' , '1');ini_set('error_log' , '\/path\/to\/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> Note :<\/p> 1. The path '\/path\/to\/errors.txt' should be writable by the web server for errors to be logged there.<\/p> 2. A separate error file is specified , otherwise all logs would go inside the apache\/web server error log and get mixed up with other apache errors.<\/p> 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver).<\/p> 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like \/var\/log dont have to searched.<\/p> 5. Dont set error_reporting to 0. It will not log anything then.<\/p> Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file.<\/p> Set 'display_errors=On' in php.ini on development machine<\/p> On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page.<\/p> Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work.<\/p> Set 'display_errors=Off' in php.ini on production machine<\/p> Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away.<\/p> 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results.<\/p> On a 64 bit machine you can see such output.<\/p> $ php -aInteractive shellphp > echo strtotime(\"0000-00-00 00:00:00\");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600<\/pre> But on a 32 bit machine all of them would give bool(false). Check here for more.<\/p> What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines.<\/p> 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this :<\/p> set_time_limit(30);\/\/Rest of the code<\/pre> It may not always work. Any execution that happens outside the script via system calls\/os functions like socket operations, database operations etc. will not be under control of set_time_limit.<\/p> So if a database operation takes lot of time or \"hangs\" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time.<\/p> 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it.<\/p> A better solution :<\/p> \/**\tMethod to execute a command in the terminal\tUses :\t1. system\t2. passthru\t3. exec\t4. shell_exec*\/function terminal($command){\t\/\/system\tif(function_exists('system'))\t{\t\tob_start();\t\tsystem($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/passthru\telse if(function_exists('passthru'))\t{\t\tob_start();\t\tpassthru($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/exec\telse if(function_exists('exec'))\t{\t\texec($command , $output , $return_var);\t\t$output = implode(\"\\n\" , $output);\t}\t\/\/shell_exec\telse if(function_exists('shell_exec'))\t{\t\t$output = shell_exec($command) ;\t}\telse\t{\t\t$output = 'Command execution not possible on this system';\t\t$return_var = 1;\t}\treturn array('output' => $output , 'status' => $return_var);}terminal('ls');<\/pre> The above function will execute the shell command using whichever function is available , keeping your code consistent.<\/p> 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user.<\/p> 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise.<\/p> Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind.<\/p> 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily.<\/p> Few popular libraries are :<\/p> mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference.<\/p> 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code.<\/p> Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community.<\/p> They contain user feedback, expert advice and useful code snippets. So check them out.<\/p> 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!!<\/p> 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc.<\/p> The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more<\/p> 1. Codeigniter 2. WordPress 3. Joomla CMS<\/p> 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment.<\/p> Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster.<\/p> Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free.<\/p> "} 社區(qū) 文章 合集 問答 學習 課程 編程詞典 工具庫 開發(fā)工具 網(wǎng)站源碼 PHP 庫 JS特效 網(wǎng)站素材 擴展插件 AI工具 休閑 游戲下載 游戲教程 簡體中文 簡體中文 English 繁體中文 日本語 ??? Melayu Fran?ais Deutsch Login singup 首頁 后端開發(fā) php教程 40+ Useful Php tips for beginners ? Part 1 40+ Useful Php tips for beginners ? Part 1 WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB Jun 23, 2016 pm 02:37 PM PHP學習指南 http://www.binarytides.com/category/php-2/tutorial/ In this series we are going to look into some useful tips and techniques that can be used to improve and optimise your php code. Note that these php tips are meant for beginners and not those who are already using mvc frameworks etc. The Techniques 1. Do not use relative paths , instead define a ROOT path Its quite common to see such lines : require_once('http://www.cnblogs.com/lib/some_class.php'); This approach has many drawbacks : It first searches for directories specified in the include paths of php , then looks from the current directory. So many directories are checked. When a script is included by another script in a different directory , its base directory changes to that of the including script. Another issue , is that when a script is being run from cron , it may not have its parent directory as the working directory. So its a good idea to have absolute paths : define('ROOT' , '/var/www/project/');require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code Now this is an absolute path and will always stay constant. But we can improve this further. The directory /var/www/project can change , so do we change it everytime ? No instead we make it portable using magic constants like __FILE__ . Take a closer look : //suppose your script is /var/www/project/index.php//Then __FILE__ will always have that full path.define('ROOT' , pathinfo(__FILE__, PATHINFO_DIRNAME));require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code So now even if you shift your project to a different directory , like moving it to an online server , the same code will run without any changes. 2. Dont use require , include , require_once or include_once Your script could be including various files on top , like class libraries , files for utility and helper functions etc like this : require_once('lib/Database.php');require_once('lib/Mail.php');require_once('helpers/utitlity_functions.php'); This is rather primitive. The code needs to be more flexible. Write up helper functions to include things more easily. Lets take an example : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); require_once( $path ); }load_class('Database');load_class('Mail'); See any difference ? You must. It does not need any more explanation. You can improve this further if you wish to like this : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); if(file_exists($path)) { require_once( $path ); }} There are a lot of things that can be done with this : Search multiple directories for the same class file. Change the directory containing class files easily , without breaking the code anywhere. Use similar functions for loading files that contain helper functions , html content etc. 3. Maintain debugging environment in your application During development we echo database queries , dump variables which are creating problems , and then once the problem is solved , we comment them or erase them. But its a good idea to let everything stay and help in the long run On your development machine you can do this : define('ENVIRONMENT' , 'development');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } And on the server you can do this : define('ENVIRONMENT' , 'production');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } 4. Propagate status messages via session Status messages are those messages that are generated after doing a task. <?phpif($wrong_username || $wrong_password){ $msg = 'Invalid username or password';}?><html><body><?php echo $msg; ?><form>...</form></body></html> Code like that is common. Using variables to show status messages has limitations. They cannot be send via redirects (unless you propagate them as GET variables to the next script , which is very silly). In large scripts there might be multiple messages etc. Best way is to use session to propagate them (even if on same page). For this there has to be a session_start on every page. function set_flash($msg){ $_SESSION['message'] = $msg;}function get_flash(){ $msg = $_SESSION['message']; unset($_SESSION['message']); return $msg;} and in your script : <?phpif($wrong_username || $wrong_password){ set_flash('Invalid username or password');}?><html><body>Status is : <?php echo get_flash(); ?><form>...</form></body></html> 5. Make your functions flexible function add_to_cart($item_id , $qty){ $_SESSION['cart'][$item_id] = $qty;}add_to_cart( 'IPHONE3' , 2 ); When adding a single item you use the above function. When adding multiple items , will you create another function ? NO. Just make the function flexible enough to take different kinds of parameters. Have a closer look : function add_to_cart($item_id , $qty){ if(!is_array($item_id)) { $_SESSION['cart'][$item_id] = $qty; } else { foreach($item_id as $i_id => $qty) { $_SESSION['cart'][$i_id] = $qty; } }}add_to_cart( 'IPHONE3' , 2 );add_to_cart( array('IPHONE3' => 2 , 'IPAD' => 5) ); So now the same function can accept different kinds of output. The above can be applied in lots of places to make your code more agile. 6. Omit the closing php tag if it is the last thing in a script I wonder why this tip is omitted from so many blog posts on php tips. <?phpecho "Hello";//Now dont close this tag This will save you lots of problem. Lets take an example : A class file super_class.php <?phpclass super_class{ function super_function() { //super code }}?>//super extra character after the closing tag Now index.php require_once('super_class.php');//echo an image or pdf , or set the cookies or session data And you will get Headers already send error. Why ? because the "super extra character" has been echoed , and all headers went along with that. Now you start debugging. You may have to waste many hours to find the super extra space. Hence make it a habit to omit the closing tag : <?phpclass super_class{ function super_function() { //super code }}//No closing tag Thats better. 7. Collect all output at one place , and output at one shot to the browser This is called output buffering. Lets say you have been echoing content from different functions like this : function print_header(){ echo "<div id='header'>Site Log and Login links</div>";}function print_footer(){ echo "<div id='footer'>Site was made by me</div>";}print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}print_footer(); Instead of doing like that , first collect all output in one place. You can either store it inside variables in the functions or use ob_start and ob_end_clean. So now it should look like function print_header(){ $o = "<div id='header'>Site Log and Login links</div>"; return $o;}function print_footer(){ $o = "<div id='footer'>Site was made by me</div>"; return $o;}echo print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}echo print_footer(); So why should you do output buffering : You can change the output just before sending it to browser if you need to. Think about doing some str_replaces , or may be preg_replaces or may be adding some extra html at the end like profiler/debugger output Its a bad idea to send output to browser and do php processing at the same time. Have you ever seen a website where there is a Fatal error in the sidebar or in a box in the middle of the screen. You know why that happens ? Because processing and output are being mixed. 8. Send correct mime types via header when outputting non-html content Lets echo some xml. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataecho $xml; Works fine. But it needs some improvement. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataheader("content-type: text/xml");echo $xml; Note that header line. That line tells the browser that the content is xml content. So the browser can handle it correctly. Many javascript libraries also rely on header information. Similarly for javascript , css , jpg image , png image : Javascript header("content-type: application/x-javascript");echo "var a = 10"; CSS header("content-type: text/css");echo "#div id { background:#000; }"; 9. Set the correct character encoding for a mysql connection Ever faced a problem that unicode/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation. $host = 'localhost';$username = 'root';$password = 'super_secret';//Attempt to connect to database$c = mysqli_connect($host , $username, $password); //Check connection validityif (!$c) { die ("Could not connect to the database host: <br />". mysqli_connect_error());} //Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){ die('mysqli_set_charset() failed');} Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application. Otherwise what will happen ? You will see lots of boxes and ???????? in non english text. 10. Use htmlentities with the correct characterset option Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc. $value = htmlentities($this->value , ENT_QUOTES , 'UTF-8'); Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual. 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php. Use apache mod_gzip/mod_deflate to compress content via the .htaccess file. 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php. $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= "'$image' ,";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;//Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,]; Be smart. use json_encode : $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;//Output is : var images = ["myself.png","friends.png","colleagues.png"] Isn't that neat ? 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of "debugging" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on. Make sure that your application is as intelligent as possible and reports the most important information in the shortest time. $contents = "All the content";$file_path = "/var/www/project/content.txt";file_put_contents($file_path , $contents); That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons : Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file. $contents = "All the content";$dir = '/var/www/project';$file_path = $dir . "/content.txt";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die("Directory $dir is not writable, or does not exist. Please check");} By doing this you get the accurate information that where is a file write failing and why 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are "accessible" outside. Otherwise for example the files may be created by "php" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on. // Read and write for owner, read for everybody elsechmod("/somedir/somefile", 0644);// Everything for owner, read and execute for otherschmod("/somedir/somefile", 0755); 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ //Save the things} The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this : if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ //Save the things} Now you are free from the value the submit button 16. Use static variables in function where they always have same value //Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} Instead use static variables as : //Delay for some timefunction delay(){ static $sync_delay = null; if($sync_delay == null) { $sync_delay = get_option('sync_delay'); } echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} 17. Don't use the $_SESSION variable directly Some simple examples are : $_SESSION['username'] = $username;$username = $_SESSION['username']; But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain. Hence use application specific keys with wrapper functions : define('APP_ID' , 'abc_corp_ecommerce');//Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}//Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;} 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like : function utility_a(){ //This function does a utility thing like string processing}function utility_b(){ //This function does nother utility thing like database processing}function utility_c(){ //This function is ...} And you use the function throughout your application freely. You may want to wrap them into a class as static functions : class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}//and call them as $a = Utility::utility_a();$b = Utility::utility_b(); One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else. 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++; Its absolutely a WASTE. Write if($a == true){ $a_count++;} Dont try to make your code shorter by eating up syntax. Rather make your logic shorter. Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this : foreach($arr as $c => $v){ $arr[$c] = trim($v);} But it can more cleaner with array_map : $arr = array_map('trim' , $arr); This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more. 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters. The php filter extension provides simple way to validate or check values as being a valid 'something'. 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate']; Its a good habit. 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded : $db_records_in_array_format; //This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; //2MB moresome_function($cc); //Another 2MB ? The above thing is common when importing a csv file or exporting table to a csv file Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays. Consider passing them by reference , or storing them in a class variable : $a = get_large_array();pass_to_function(&$a); by doing this the same variable (and not its copy) will be available to the function. Check documentation class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { //process $this->a }} unset them as soon as possible , so that memory is freed and rest of the script can relax. Here is a simple demonstration of how assign by reference can save memory in some cases <?phpini_set('display_errors' , true);error_reporting(E_ALL);$a = array();for($i = 0; $i < 100000 ; $i++){ $a[$i] = 'A'.$i;}echo 'Memory usage in MB : '. memory_get_usage() / 1000000 . '<br />';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() / 1000000 . '<br />';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() / 1000000 . '<br />';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() / 1000000 . '<br />'; The output on a typical php 5.4 machine is : Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more. 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this : function add_to_cart(){ $db = new Database(); $db->query("INSERT INTO cart .....");}function empty_cart(){ $db = new Database(); $db->query("DELETE FROM cart .....");} Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory. Use the singleton pattern for special cases like database connection. 26. Avoid direct SQL query , abstract it $query = "INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')";$db->query($query); //call to mysqli_query() The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like: All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries. A very simple example of an activerecord insert function can be like this : function insert_record($table_name , $data){ foreach($data as $key => $value) { //mysqli_real_escape_string $data[$key] = $db->mres($value); } $fields = implode(',' , array_keys($data)); $values = "'" . implode("','" , array_values($data)) . "'"; //Final query $query = "INSERT INTO {$table}($fields) VALUES($values)"; return $db->query($query);}//data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);//perform the INSERT queryinsert_record('users' , $data); The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse). This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise. 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again. Benefits : Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue. Storing session in database makes many other things easier like: Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example : <head> <base href="http://www.domain.com/store/"></head><body> <img src="/static/imghw/default1.png" data-src="happy.jpg" class="lazy" / alt="40+ Useful Php tips for beginners ? Part 1" ></body></html> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories. Lets take an example www.domain.com/store/home.php www.domain.com/store/products/ipad.php In home.php the following can be written : <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> But in ipad.php the links have to be like this : <a href="../home.php">Home</a><a href="ipad.php">Ipad</a> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag. <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products/ipad.php 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing. ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT); On production , the display should be disabled. ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark. After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set. ini_set('log_errors' , '1');ini_set('error_log' , '/path/to/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); Note : 1. The path '/path/to/errors.txt' should be writable by the web server for errors to be logged there. 2. A separate error file is specified , otherwise all logs would go inside the apache/web server error log and get mixed up with other apache errors. 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver). 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like /var/log dont have to searched. 5. Dont set error_reporting to 0. It will not log anything then. Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file. Set 'display_errors=On' in php.ini on development machine On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page. Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work. Set 'display_errors=Off' in php.ini on production machine Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away. 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results. On a 64 bit machine you can see such output. $ php -aInteractive shellphp > echo strtotime("0000-00-00 00:00:00");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600 But on a 32 bit machine all of them would give bool(false). Check here for more. What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines. 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this : set_time_limit(30);//Rest of the code It may not always work. Any execution that happens outside the script via system calls/os functions like socket operations, database operations etc. will not be under control of set_time_limit. So if a database operation takes lot of time or "hangs" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time. 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it. A better solution : /** Method to execute a command in the terminal Uses : 1. system 2. passthru 3. exec 4. shell_exec*/function terminal($command){ //system if(function_exists('system')) { ob_start(); system($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //passthru else if(function_exists('passthru')) { ob_start(); passthru($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //exec else if(function_exists('exec')) { exec($command , $output , $return_var); $output = implode("\n" , $output); } //shell_exec else if(function_exists('shell_exec')) { $output = shell_exec($command) ; } else { $output = 'Command execution not possible on this system'; $return_var = 1; } return array('output' => $output , 'status' => $return_var);}terminal('ls'); The above function will execute the shell command using whichever function is available , keeping your code consistent. 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user. 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise. Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind. 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily. Few popular libraries are : mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference. 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code. Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community. They contain user feedback, expert advice and useful code snippets. So check them out. 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!! 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc. The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more 1. Codeigniter 2. WordPress 3. Joomla CMS 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment. Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster. Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free. 本站聲明 本文內(nèi)容由網(wǎng)友自發(fā)貢獻,版權(quán)歸原作者所有,本站不承擔相應(yīng)法律責任。如您發(fā)現(xiàn)有涉嫌抄襲侵權(quán)的內(nèi)容,請聯(lián)系admin@php.cn 熱AI工具 Undress AI Tool 免費脫衣服圖片 Undresser.AI Undress 人工智能驅(qū)動的應(yīng)用程序,用于創(chuàng)建逼真的裸體照片 AI Clothes Remover 用于從照片中去除衣服的在線人工智能工具。 Clothoff.io AI脫衣機 Video Face Swap 使用我們完全免費的人工智能換臉工具輕松在任何視頻中換臉! 顯示更多 熱門文章 指南:恒星刀片保存文件位置/保存文件丟失/不保存 4 周前 By DDD Oguri Cap Build Guide |漂亮的德比志 2 周前 By Jack chen Agnes Tachyon Build Guide |漂亮的德比志 1 周前 By Jack chen 沙丘:覺醒 - 高級行星學家Quest演練 4 周前 By Jack chen 約會一切:德克和哈珀關(guān)系指南 4 周前 By Jack chen 顯示更多 熱工具 記事本++7.3.1 好用且免費的代碼編輯器 SublimeText3漢化版 中文版,非常好用 禪工作室 13.0.1 功能強大的PHP集成開發(fā)環(huán)境 Dreamweaver CS6 視覺化網(wǎng)頁開發(fā)工具 SublimeText3 Mac版 神級代碼編輯軟件(SublimeText3) 顯示更多 熱門話題 gmail郵箱登陸入口在哪里 8638 17 Java教程 1783 16 CakePHP 教程 1728 56 Laravel 教程 1578 28 PHP教程 1442 31 顯示更多 Related knowledge 如何在PHP中實施身份驗證和授權(quán)? Jun 20, 2025 am 01:03 AM tosecurelyhandleauthenticationandationallizationInphp,lofterTheSesteps:1.AlwaysHashPasswordSwithPassword_hash()andverifyusingspasspassword_verify(),usepreparedStatatementStopreventsqlineptions,andStoreSeruserDatain usseruserDatain $ _sessiveferterlogin.2.implementrole-2.imaccessccsccccccccccccccccccccccccc. 如何在PHP中安全地處理文件上傳? Jun 19, 2025 am 01:05 AM 要安全處理PHP中的文件上傳,核心在于驗證文件類型、重命名文件并限制權(quán)限。1.使用finfo_file()檢查真實MIME類型,僅允許特定類型如image/jpeg;2.用uniqid()生成隨機文件名,存儲至非Web根目錄;3.通過php.ini和HTML表單限制文件大小,設(shè)置目錄權(quán)限為0755;4.使用ClamAV掃描惡意軟件,增強安全性。這些步驟有效防止安全漏洞,確保文件上傳過程安全可靠。 PHP中==(松散比較)和===(嚴格的比較)之間有什么區(qū)別? Jun 19, 2025 am 01:07 AM 在PHP中,==與===的主要區(qū)別在于類型檢查的嚴格程度。==在比較前會進行類型轉(zhuǎn)換,例如5=="5"返回true,而===要求值和類型都相同才會返回true,例如5==="5"返回false。使用場景上,===更安全應(yīng)優(yōu)先使用,==僅在需要類型轉(zhuǎn)換時使用。 如何在PHP( - , *, /,%)中執(zhí)行算術(shù)操作? Jun 19, 2025 pm 05:13 PM PHP中使用基本數(shù)學運算的方法如下:1.加法用 號,支持整數(shù)和浮點數(shù),也可用于變量,字符串數(shù)字會自動轉(zhuǎn)換但不推薦依賴;2.減法用-號,變量同理,類型轉(zhuǎn)換同樣適用;3.乘法用*號,適用于數(shù)字及類似字符串;4.除法用/號,需避免除以零,并注意結(jié)果可能是浮點數(shù);5.取模用%號,可用于判斷奇偶數(shù),處理負數(shù)時余數(shù)符號與被除數(shù)一致。正確使用這些運算符的關(guān)鍵在于確保數(shù)據(jù)類型清晰并處理好邊界情況。 如何與PHP的NOSQL數(shù)據(jù)庫(例如MongoDB,Redis)進行交互? Jun 19, 2025 am 01:07 AM 是的,PHP可以通過特定擴展或庫與MongoDB和Redis等NoSQL數(shù)據(jù)庫交互。首先,使用MongoDBPHP驅(qū)動(通過PECL或Composer安裝)創(chuàng)建客戶端實例并操作數(shù)據(jù)庫及集合,支持插入、查詢、聚合等操作;其次,使用Predis庫或phpredis擴展連接Redis,執(zhí)行鍵值設(shè)置與獲取,推薦phpredis用于高性能場景,Predis則便于快速部署;兩者均適用于生產(chǎn)環(huán)境且文檔完善。 我如何了解最新的PHP開發(fā)和最佳實踐? Jun 23, 2025 am 12:56 AM TostaycurrentwithPHPdevelopmentsandbestpractices,followkeynewssourceslikePHP.netandPHPWeekly,engagewithcommunitiesonforumsandconferences,keeptoolingupdatedandgraduallyadoptnewfeatures,andreadorcontributetoopensourceprojects.First,followreliablesource 什么是PHP,為什么它用于Web開發(fā)? Jun 23, 2025 am 12:55 AM PHPbecamepopularforwebdevelopmentduetoitseaseoflearning,seamlessintegrationwithHTML,widespreadhostingsupport,andalargeecosystemincludingframeworkslikeLaravelandCMSplatformslikeWordPress.Itexcelsinhandlingformsubmissions,managingusersessions,interacti 如何設(shè)置PHP時區(qū)? Jun 25, 2025 am 01:00 AM tosetTherightTimeZoneInphp,restate_default_timezone_set()functionAtthestArtofyourscriptWithavalIdidentIdentifiersuchas'america/new_york'.1.usedate_default_default_timezone_set_set() See all articles
The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like:<\/p> All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that
Solution: ActiveRecord<\/p>
It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries.<\/p>
A very simple example of an activerecord insert function can be like this :<\/p>
function insert_record($table_name , $data){ foreach($data as $key => $value) {\t\/\/mysqli_real_escape_string $data[$key] = $db->mres($value); }\t\t $fields = implode(',' , array_keys($data)); $values = \"'\" . implode(\"','\" , array_values($data)) . \"'\"; \/\/Final query\t $query = \"INSERT INTO {$table}($fields) VALUES($values)\";\t\t return $db->query($query);}\/\/data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);\/\/perform the INSERT queryinsert_record('users' , $data);<\/pre> The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse).<\/p> This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise.<\/p> 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again.<\/p> Benefits :<\/p> Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue.<\/p> Storing session in database makes many other things easier like:<\/p> Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines\/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example :<\/p> <\/head> <\/body><\/html><\/pre> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories.<\/p> Lets take an example<\/p> www.domain.com\/store\/home.php www.domain.com\/store\/products\/ipad.php<\/p> In home.php the following can be written :<\/p> Home<\/a>Ipad<\/a><\/pre> But in ipad.php the links have to be like this :<\/p> Home<\/a>Ipad<\/a><\/pre> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag.<\/p> <\/head>Home<\/a>Ipad<\/a><\/body><\/html><\/pre> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products\/ipad.php<\/p> 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing.<\/p> ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT);<\/pre> On production , the display should be disabled.<\/p> ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark.<\/p> After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set.<\/p> ini_set('log_errors' , '1');ini_set('error_log' , '\/path\/to\/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> Note :<\/p> 1. The path '\/path\/to\/errors.txt' should be writable by the web server for errors to be logged there.<\/p> 2. A separate error file is specified , otherwise all logs would go inside the apache\/web server error log and get mixed up with other apache errors.<\/p> 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver).<\/p> 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like \/var\/log dont have to searched.<\/p> 5. Dont set error_reporting to 0. It will not log anything then.<\/p> Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file.<\/p> Set 'display_errors=On' in php.ini on development machine<\/p> On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page.<\/p> Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work.<\/p> Set 'display_errors=Off' in php.ini on production machine<\/p> Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away.<\/p> 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results.<\/p> On a 64 bit machine you can see such output.<\/p> $ php -aInteractive shellphp > echo strtotime(\"0000-00-00 00:00:00\");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600<\/pre> But on a 32 bit machine all of them would give bool(false). Check here for more.<\/p> What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines.<\/p> 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this :<\/p> set_time_limit(30);\/\/Rest of the code<\/pre> It may not always work. Any execution that happens outside the script via system calls\/os functions like socket operations, database operations etc. will not be under control of set_time_limit.<\/p> So if a database operation takes lot of time or \"hangs\" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time.<\/p> 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it.<\/p> A better solution :<\/p> \/**\tMethod to execute a command in the terminal\tUses :\t1. system\t2. passthru\t3. exec\t4. shell_exec*\/function terminal($command){\t\/\/system\tif(function_exists('system'))\t{\t\tob_start();\t\tsystem($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/passthru\telse if(function_exists('passthru'))\t{\t\tob_start();\t\tpassthru($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/exec\telse if(function_exists('exec'))\t{\t\texec($command , $output , $return_var);\t\t$output = implode(\"\\n\" , $output);\t}\t\/\/shell_exec\telse if(function_exists('shell_exec'))\t{\t\t$output = shell_exec($command) ;\t}\telse\t{\t\t$output = 'Command execution not possible on this system';\t\t$return_var = 1;\t}\treturn array('output' => $output , 'status' => $return_var);}terminal('ls');<\/pre> The above function will execute the shell command using whichever function is available , keeping your code consistent.<\/p> 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user.<\/p> 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise.<\/p> Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind.<\/p> 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily.<\/p> Few popular libraries are :<\/p> mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference.<\/p> 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code.<\/p> Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community.<\/p> They contain user feedback, expert advice and useful code snippets. So check them out.<\/p> 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!!<\/p> 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc.<\/p> The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more<\/p> 1. Codeigniter 2. WordPress 3. Joomla CMS<\/p> 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment.<\/p> Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster.<\/p> Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free.<\/p> "} 社區(qū) 文章 合集 問答 學習 課程 編程詞典 工具庫 開發(fā)工具 網(wǎng)站源碼 PHP 庫 JS特效 網(wǎng)站素材 擴展插件 AI工具 休閑 游戲下載 游戲教程 簡體中文 簡體中文 English 繁體中文 日本語 ??? Melayu Fran?ais Deutsch Login singup 首頁 后端開發(fā) php教程 40+ Useful Php tips for beginners ? Part 1 40+ Useful Php tips for beginners ? Part 1 WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB Jun 23, 2016 pm 02:37 PM PHP學習指南 http://www.binarytides.com/category/php-2/tutorial/ In this series we are going to look into some useful tips and techniques that can be used to improve and optimise your php code. Note that these php tips are meant for beginners and not those who are already using mvc frameworks etc. The Techniques 1. Do not use relative paths , instead define a ROOT path Its quite common to see such lines : require_once('http://www.cnblogs.com/lib/some_class.php'); This approach has many drawbacks : It first searches for directories specified in the include paths of php , then looks from the current directory. So many directories are checked. When a script is included by another script in a different directory , its base directory changes to that of the including script. Another issue , is that when a script is being run from cron , it may not have its parent directory as the working directory. So its a good idea to have absolute paths : define('ROOT' , '/var/www/project/');require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code Now this is an absolute path and will always stay constant. But we can improve this further. The directory /var/www/project can change , so do we change it everytime ? No instead we make it portable using magic constants like __FILE__ . Take a closer look : //suppose your script is /var/www/project/index.php//Then __FILE__ will always have that full path.define('ROOT' , pathinfo(__FILE__, PATHINFO_DIRNAME));require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code So now even if you shift your project to a different directory , like moving it to an online server , the same code will run without any changes. 2. Dont use require , include , require_once or include_once Your script could be including various files on top , like class libraries , files for utility and helper functions etc like this : require_once('lib/Database.php');require_once('lib/Mail.php');require_once('helpers/utitlity_functions.php'); This is rather primitive. The code needs to be more flexible. Write up helper functions to include things more easily. Lets take an example : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); require_once( $path ); }load_class('Database');load_class('Mail'); See any difference ? You must. It does not need any more explanation. You can improve this further if you wish to like this : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); if(file_exists($path)) { require_once( $path ); }} There are a lot of things that can be done with this : Search multiple directories for the same class file. Change the directory containing class files easily , without breaking the code anywhere. Use similar functions for loading files that contain helper functions , html content etc. 3. Maintain debugging environment in your application During development we echo database queries , dump variables which are creating problems , and then once the problem is solved , we comment them or erase them. But its a good idea to let everything stay and help in the long run On your development machine you can do this : define('ENVIRONMENT' , 'development');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } And on the server you can do this : define('ENVIRONMENT' , 'production');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } 4. Propagate status messages via session Status messages are those messages that are generated after doing a task. <?phpif($wrong_username || $wrong_password){ $msg = 'Invalid username or password';}?><html><body><?php echo $msg; ?><form>...</form></body></html> Code like that is common. Using variables to show status messages has limitations. They cannot be send via redirects (unless you propagate them as GET variables to the next script , which is very silly). In large scripts there might be multiple messages etc. Best way is to use session to propagate them (even if on same page). For this there has to be a session_start on every page. function set_flash($msg){ $_SESSION['message'] = $msg;}function get_flash(){ $msg = $_SESSION['message']; unset($_SESSION['message']); return $msg;} and in your script : <?phpif($wrong_username || $wrong_password){ set_flash('Invalid username or password');}?><html><body>Status is : <?php echo get_flash(); ?><form>...</form></body></html> 5. Make your functions flexible function add_to_cart($item_id , $qty){ $_SESSION['cart'][$item_id] = $qty;}add_to_cart( 'IPHONE3' , 2 ); When adding a single item you use the above function. When adding multiple items , will you create another function ? NO. Just make the function flexible enough to take different kinds of parameters. Have a closer look : function add_to_cart($item_id , $qty){ if(!is_array($item_id)) { $_SESSION['cart'][$item_id] = $qty; } else { foreach($item_id as $i_id => $qty) { $_SESSION['cart'][$i_id] = $qty; } }}add_to_cart( 'IPHONE3' , 2 );add_to_cart( array('IPHONE3' => 2 , 'IPAD' => 5) ); So now the same function can accept different kinds of output. The above can be applied in lots of places to make your code more agile. 6. Omit the closing php tag if it is the last thing in a script I wonder why this tip is omitted from so many blog posts on php tips. <?phpecho "Hello";//Now dont close this tag This will save you lots of problem. Lets take an example : A class file super_class.php <?phpclass super_class{ function super_function() { //super code }}?>//super extra character after the closing tag Now index.php require_once('super_class.php');//echo an image or pdf , or set the cookies or session data And you will get Headers already send error. Why ? because the "super extra character" has been echoed , and all headers went along with that. Now you start debugging. You may have to waste many hours to find the super extra space. Hence make it a habit to omit the closing tag : <?phpclass super_class{ function super_function() { //super code }}//No closing tag Thats better. 7. Collect all output at one place , and output at one shot to the browser This is called output buffering. Lets say you have been echoing content from different functions like this : function print_header(){ echo "<div id='header'>Site Log and Login links</div>";}function print_footer(){ echo "<div id='footer'>Site was made by me</div>";}print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}print_footer(); Instead of doing like that , first collect all output in one place. You can either store it inside variables in the functions or use ob_start and ob_end_clean. So now it should look like function print_header(){ $o = "<div id='header'>Site Log and Login links</div>"; return $o;}function print_footer(){ $o = "<div id='footer'>Site was made by me</div>"; return $o;}echo print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}echo print_footer(); So why should you do output buffering : You can change the output just before sending it to browser if you need to. Think about doing some str_replaces , or may be preg_replaces or may be adding some extra html at the end like profiler/debugger output Its a bad idea to send output to browser and do php processing at the same time. Have you ever seen a website where there is a Fatal error in the sidebar or in a box in the middle of the screen. You know why that happens ? Because processing and output are being mixed. 8. Send correct mime types via header when outputting non-html content Lets echo some xml. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataecho $xml; Works fine. But it needs some improvement. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataheader("content-type: text/xml");echo $xml; Note that header line. That line tells the browser that the content is xml content. So the browser can handle it correctly. Many javascript libraries also rely on header information. Similarly for javascript , css , jpg image , png image : Javascript header("content-type: application/x-javascript");echo "var a = 10"; CSS header("content-type: text/css");echo "#div id { background:#000; }"; 9. Set the correct character encoding for a mysql connection Ever faced a problem that unicode/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation. $host = 'localhost';$username = 'root';$password = 'super_secret';//Attempt to connect to database$c = mysqli_connect($host , $username, $password); //Check connection validityif (!$c) { die ("Could not connect to the database host: <br />". mysqli_connect_error());} //Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){ die('mysqli_set_charset() failed');} Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application. Otherwise what will happen ? You will see lots of boxes and ???????? in non english text. 10. Use htmlentities with the correct characterset option Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc. $value = htmlentities($this->value , ENT_QUOTES , 'UTF-8'); Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual. 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php. Use apache mod_gzip/mod_deflate to compress content via the .htaccess file. 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php. $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= "'$image' ,";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;//Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,]; Be smart. use json_encode : $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;//Output is : var images = ["myself.png","friends.png","colleagues.png"] Isn't that neat ? 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of "debugging" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on. Make sure that your application is as intelligent as possible and reports the most important information in the shortest time. $contents = "All the content";$file_path = "/var/www/project/content.txt";file_put_contents($file_path , $contents); That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons : Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file. $contents = "All the content";$dir = '/var/www/project';$file_path = $dir . "/content.txt";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die("Directory $dir is not writable, or does not exist. Please check");} By doing this you get the accurate information that where is a file write failing and why 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are "accessible" outside. Otherwise for example the files may be created by "php" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on. // Read and write for owner, read for everybody elsechmod("/somedir/somefile", 0644);// Everything for owner, read and execute for otherschmod("/somedir/somefile", 0755); 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ //Save the things} The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this : if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ //Save the things} Now you are free from the value the submit button 16. Use static variables in function where they always have same value //Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} Instead use static variables as : //Delay for some timefunction delay(){ static $sync_delay = null; if($sync_delay == null) { $sync_delay = get_option('sync_delay'); } echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} 17. Don't use the $_SESSION variable directly Some simple examples are : $_SESSION['username'] = $username;$username = $_SESSION['username']; But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain. Hence use application specific keys with wrapper functions : define('APP_ID' , 'abc_corp_ecommerce');//Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}//Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;} 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like : function utility_a(){ //This function does a utility thing like string processing}function utility_b(){ //This function does nother utility thing like database processing}function utility_c(){ //This function is ...} And you use the function throughout your application freely. You may want to wrap them into a class as static functions : class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}//and call them as $a = Utility::utility_a();$b = Utility::utility_b(); One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else. 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++; Its absolutely a WASTE. Write if($a == true){ $a_count++;} Dont try to make your code shorter by eating up syntax. Rather make your logic shorter. Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this : foreach($arr as $c => $v){ $arr[$c] = trim($v);} But it can more cleaner with array_map : $arr = array_map('trim' , $arr); This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more. 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters. The php filter extension provides simple way to validate or check values as being a valid 'something'. 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate']; Its a good habit. 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded : $db_records_in_array_format; //This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; //2MB moresome_function($cc); //Another 2MB ? The above thing is common when importing a csv file or exporting table to a csv file Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays. Consider passing them by reference , or storing them in a class variable : $a = get_large_array();pass_to_function(&$a); by doing this the same variable (and not its copy) will be available to the function. Check documentation class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { //process $this->a }} unset them as soon as possible , so that memory is freed and rest of the script can relax. Here is a simple demonstration of how assign by reference can save memory in some cases <?phpini_set('display_errors' , true);error_reporting(E_ALL);$a = array();for($i = 0; $i < 100000 ; $i++){ $a[$i] = 'A'.$i;}echo 'Memory usage in MB : '. memory_get_usage() / 1000000 . '<br />';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() / 1000000 . '<br />';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() / 1000000 . '<br />';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() / 1000000 . '<br />'; The output on a typical php 5.4 machine is : Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more. 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this : function add_to_cart(){ $db = new Database(); $db->query("INSERT INTO cart .....");}function empty_cart(){ $db = new Database(); $db->query("DELETE FROM cart .....");} Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory. Use the singleton pattern for special cases like database connection. 26. Avoid direct SQL query , abstract it $query = "INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')";$db->query($query); //call to mysqli_query() The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like: All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries. A very simple example of an activerecord insert function can be like this : function insert_record($table_name , $data){ foreach($data as $key => $value) { //mysqli_real_escape_string $data[$key] = $db->mres($value); } $fields = implode(',' , array_keys($data)); $values = "'" . implode("','" , array_values($data)) . "'"; //Final query $query = "INSERT INTO {$table}($fields) VALUES($values)"; return $db->query($query);}//data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);//perform the INSERT queryinsert_record('users' , $data); The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse). This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise. 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again. Benefits : Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue. Storing session in database makes many other things easier like: Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example : <head> <base href="http://www.domain.com/store/"></head><body> <img src="/static/imghw/default1.png" data-src="happy.jpg" class="lazy" / alt="40+ Useful Php tips for beginners ? Part 1" ></body></html> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories. Lets take an example www.domain.com/store/home.php www.domain.com/store/products/ipad.php In home.php the following can be written : <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> But in ipad.php the links have to be like this : <a href="../home.php">Home</a><a href="ipad.php">Ipad</a> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag. <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products/ipad.php 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing. ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT); On production , the display should be disabled. ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark. After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set. ini_set('log_errors' , '1');ini_set('error_log' , '/path/to/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); Note : 1. The path '/path/to/errors.txt' should be writable by the web server for errors to be logged there. 2. A separate error file is specified , otherwise all logs would go inside the apache/web server error log and get mixed up with other apache errors. 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver). 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like /var/log dont have to searched. 5. Dont set error_reporting to 0. It will not log anything then. Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file. Set 'display_errors=On' in php.ini on development machine On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page. Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work. Set 'display_errors=Off' in php.ini on production machine Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away. 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results. On a 64 bit machine you can see such output. $ php -aInteractive shellphp > echo strtotime("0000-00-00 00:00:00");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600 But on a 32 bit machine all of them would give bool(false). Check here for more. What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines. 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this : set_time_limit(30);//Rest of the code It may not always work. Any execution that happens outside the script via system calls/os functions like socket operations, database operations etc. will not be under control of set_time_limit. So if a database operation takes lot of time or "hangs" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time. 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it. A better solution : /** Method to execute a command in the terminal Uses : 1. system 2. passthru 3. exec 4. shell_exec*/function terminal($command){ //system if(function_exists('system')) { ob_start(); system($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //passthru else if(function_exists('passthru')) { ob_start(); passthru($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //exec else if(function_exists('exec')) { exec($command , $output , $return_var); $output = implode("\n" , $output); } //shell_exec else if(function_exists('shell_exec')) { $output = shell_exec($command) ; } else { $output = 'Command execution not possible on this system'; $return_var = 1; } return array('output' => $output , 'status' => $return_var);}terminal('ls'); The above function will execute the shell command using whichever function is available , keeping your code consistent. 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user. 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise. Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind. 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily. Few popular libraries are : mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference. 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code. Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community. They contain user feedback, expert advice and useful code snippets. So check them out. 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!! 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc. The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more 1. Codeigniter 2. WordPress 3. Joomla CMS 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment. Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster. Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free. 本站聲明 本文內(nèi)容由網(wǎng)友自發(fā)貢獻,版權(quán)歸原作者所有,本站不承擔相應(yīng)法律責任。如您發(fā)現(xiàn)有涉嫌抄襲侵權(quán)的內(nèi)容,請聯(lián)系admin@php.cn 熱AI工具 Undress AI Tool 免費脫衣服圖片 Undresser.AI Undress 人工智能驅(qū)動的應(yīng)用程序,用于創(chuàng)建逼真的裸體照片 AI Clothes Remover 用于從照片中去除衣服的在線人工智能工具。 Clothoff.io AI脫衣機 Video Face Swap 使用我們完全免費的人工智能換臉工具輕松在任何視頻中換臉! 顯示更多 熱門文章 指南:恒星刀片保存文件位置/保存文件丟失/不保存 4 周前 By DDD Oguri Cap Build Guide |漂亮的德比志 2 周前 By Jack chen Agnes Tachyon Build Guide |漂亮的德比志 1 周前 By Jack chen 沙丘:覺醒 - 高級行星學家Quest演練 4 周前 By Jack chen 約會一切:德克和哈珀關(guān)系指南 4 周前 By Jack chen 顯示更多 熱工具 記事本++7.3.1 好用且免費的代碼編輯器 SublimeText3漢化版 中文版,非常好用 禪工作室 13.0.1 功能強大的PHP集成開發(fā)環(huán)境 Dreamweaver CS6 視覺化網(wǎng)頁開發(fā)工具 SublimeText3 Mac版 神級代碼編輯軟件(SublimeText3) 顯示更多 熱門話題 gmail郵箱登陸入口在哪里 8638 17 Java教程 1783 16 CakePHP 教程 1728 56 Laravel 教程 1578 28 PHP教程 1442 31 顯示更多 Related knowledge 如何在PHP中實施身份驗證和授權(quán)? Jun 20, 2025 am 01:03 AM tosecurelyhandleauthenticationandationallizationInphp,lofterTheSesteps:1.AlwaysHashPasswordSwithPassword_hash()andverifyusingspasspassword_verify(),usepreparedStatatementStopreventsqlineptions,andStoreSeruserDatain usseruserDatain $ _sessiveferterlogin.2.implementrole-2.imaccessccsccccccccccccccccccccccccc. 如何在PHP中安全地處理文件上傳? Jun 19, 2025 am 01:05 AM 要安全處理PHP中的文件上傳,核心在于驗證文件類型、重命名文件并限制權(quán)限。1.使用finfo_file()檢查真實MIME類型,僅允許特定類型如image/jpeg;2.用uniqid()生成隨機文件名,存儲至非Web根目錄;3.通過php.ini和HTML表單限制文件大小,設(shè)置目錄權(quán)限為0755;4.使用ClamAV掃描惡意軟件,增強安全性。這些步驟有效防止安全漏洞,確保文件上傳過程安全可靠。 PHP中==(松散比較)和===(嚴格的比較)之間有什么區(qū)別? Jun 19, 2025 am 01:07 AM 在PHP中,==與===的主要區(qū)別在于類型檢查的嚴格程度。==在比較前會進行類型轉(zhuǎn)換,例如5=="5"返回true,而===要求值和類型都相同才會返回true,例如5==="5"返回false。使用場景上,===更安全應(yīng)優(yōu)先使用,==僅在需要類型轉(zhuǎn)換時使用。 如何在PHP( - , *, /,%)中執(zhí)行算術(shù)操作? Jun 19, 2025 pm 05:13 PM PHP中使用基本數(shù)學運算的方法如下:1.加法用 號,支持整數(shù)和浮點數(shù),也可用于變量,字符串數(shù)字會自動轉(zhuǎn)換但不推薦依賴;2.減法用-號,變量同理,類型轉(zhuǎn)換同樣適用;3.乘法用*號,適用于數(shù)字及類似字符串;4.除法用/號,需避免除以零,并注意結(jié)果可能是浮點數(shù);5.取模用%號,可用于判斷奇偶數(shù),處理負數(shù)時余數(shù)符號與被除數(shù)一致。正確使用這些運算符的關(guān)鍵在于確保數(shù)據(jù)類型清晰并處理好邊界情況。 如何與PHP的NOSQL數(shù)據(jù)庫(例如MongoDB,Redis)進行交互? Jun 19, 2025 am 01:07 AM 是的,PHP可以通過特定擴展或庫與MongoDB和Redis等NoSQL數(shù)據(jù)庫交互。首先,使用MongoDBPHP驅(qū)動(通過PECL或Composer安裝)創(chuàng)建客戶端實例并操作數(shù)據(jù)庫及集合,支持插入、查詢、聚合等操作;其次,使用Predis庫或phpredis擴展連接Redis,執(zhí)行鍵值設(shè)置與獲取,推薦phpredis用于高性能場景,Predis則便于快速部署;兩者均適用于生產(chǎn)環(huán)境且文檔完善。 我如何了解最新的PHP開發(fā)和最佳實踐? Jun 23, 2025 am 12:56 AM TostaycurrentwithPHPdevelopmentsandbestpractices,followkeynewssourceslikePHP.netandPHPWeekly,engagewithcommunitiesonforumsandconferences,keeptoolingupdatedandgraduallyadoptnewfeatures,andreadorcontributetoopensourceprojects.First,followreliablesource 什么是PHP,為什么它用于Web開發(fā)? Jun 23, 2025 am 12:55 AM PHPbecamepopularforwebdevelopmentduetoitseaseoflearning,seamlessintegrationwithHTML,widespreadhostingsupport,andalargeecosystemincludingframeworkslikeLaravelandCMSplatformslikeWordPress.Itexcelsinhandlingformsubmissions,managingusersessions,interacti 如何設(shè)置PHP時區(qū)? Jun 25, 2025 am 01:00 AM tosetTherightTimeZoneInphp,restate_default_timezone_set()functionAtthestArtofyourscriptWithavalIdidentIdentifiersuchas'america/new_york'.1.usedate_default_default_timezone_set_set() See all articles
The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse).<\/p>
This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise.<\/p> 27. Cache database generated content to static files
Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again.<\/p>
Benefits :<\/p> Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database
File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue.<\/p>
Storing session in database makes many other things easier like:<\/p> Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines\/constants Get value using a function Use Class and access via $this 30. Use base url in head tag
Quick example :<\/p>
<\/head> <\/body><\/html><\/pre> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories.<\/p> Lets take an example<\/p> www.domain.com\/store\/home.php www.domain.com\/store\/products\/ipad.php<\/p> In home.php the following can be written :<\/p> Home<\/a>Ipad<\/a><\/pre> But in ipad.php the links have to be like this :<\/p> Home<\/a>Ipad<\/a><\/pre> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag.<\/p> <\/head>Home<\/a>Ipad<\/a><\/body><\/html><\/pre> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products\/ipad.php<\/p> 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing.<\/p> ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT);<\/pre> On production , the display should be disabled.<\/p> ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark.<\/p> After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set.<\/p> ini_set('log_errors' , '1');ini_set('error_log' , '\/path\/to\/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> Note :<\/p> 1. The path '\/path\/to\/errors.txt' should be writable by the web server for errors to be logged there.<\/p> 2. A separate error file is specified , otherwise all logs would go inside the apache\/web server error log and get mixed up with other apache errors.<\/p> 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver).<\/p> 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like \/var\/log dont have to searched.<\/p> 5. Dont set error_reporting to 0. It will not log anything then.<\/p> Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file.<\/p> Set 'display_errors=On' in php.ini on development machine<\/p> On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page.<\/p> Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work.<\/p> Set 'display_errors=Off' in php.ini on production machine<\/p> Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away.<\/p> 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results.<\/p> On a 64 bit machine you can see such output.<\/p> $ php -aInteractive shellphp > echo strtotime(\"0000-00-00 00:00:00\");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600<\/pre> But on a 32 bit machine all of them would give bool(false). Check here for more.<\/p> What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines.<\/p> 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this :<\/p> set_time_limit(30);\/\/Rest of the code<\/pre> It may not always work. Any execution that happens outside the script via system calls\/os functions like socket operations, database operations etc. will not be under control of set_time_limit.<\/p> So if a database operation takes lot of time or \"hangs\" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time.<\/p> 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it.<\/p> A better solution :<\/p> \/**\tMethod to execute a command in the terminal\tUses :\t1. system\t2. passthru\t3. exec\t4. shell_exec*\/function terminal($command){\t\/\/system\tif(function_exists('system'))\t{\t\tob_start();\t\tsystem($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/passthru\telse if(function_exists('passthru'))\t{\t\tob_start();\t\tpassthru($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/exec\telse if(function_exists('exec'))\t{\t\texec($command , $output , $return_var);\t\t$output = implode(\"\\n\" , $output);\t}\t\/\/shell_exec\telse if(function_exists('shell_exec'))\t{\t\t$output = shell_exec($command) ;\t}\telse\t{\t\t$output = 'Command execution not possible on this system';\t\t$return_var = 1;\t}\treturn array('output' => $output , 'status' => $return_var);}terminal('ls');<\/pre> The above function will execute the shell command using whichever function is available , keeping your code consistent.<\/p> 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user.<\/p> 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise.<\/p> Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind.<\/p> 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily.<\/p> Few popular libraries are :<\/p> mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference.<\/p> 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code.<\/p> Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community.<\/p> They contain user feedback, expert advice and useful code snippets. So check them out.<\/p> 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!!<\/p> 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc.<\/p> The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more<\/p> 1. Codeigniter 2. WordPress 3. Joomla CMS<\/p> 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment.<\/p> Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster.<\/p> Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free.<\/p> "} 社區(qū) 文章 合集 問答 學習 課程 編程詞典 工具庫 開發(fā)工具 網(wǎng)站源碼 PHP 庫 JS特效 網(wǎng)站素材 擴展插件 AI工具 休閑 游戲下載 游戲教程 簡體中文 簡體中文 English 繁體中文 日本語 ??? Melayu Fran?ais Deutsch Login singup 首頁 后端開發(fā) php教程 40+ Useful Php tips for beginners ? Part 1 40+ Useful Php tips for beginners ? Part 1 WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB Jun 23, 2016 pm 02:37 PM PHP學習指南 http://www.binarytides.com/category/php-2/tutorial/ In this series we are going to look into some useful tips and techniques that can be used to improve and optimise your php code. Note that these php tips are meant for beginners and not those who are already using mvc frameworks etc. The Techniques 1. Do not use relative paths , instead define a ROOT path Its quite common to see such lines : require_once('http://www.cnblogs.com/lib/some_class.php'); This approach has many drawbacks : It first searches for directories specified in the include paths of php , then looks from the current directory. So many directories are checked. When a script is included by another script in a different directory , its base directory changes to that of the including script. Another issue , is that when a script is being run from cron , it may not have its parent directory as the working directory. So its a good idea to have absolute paths : define('ROOT' , '/var/www/project/');require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code Now this is an absolute path and will always stay constant. But we can improve this further. The directory /var/www/project can change , so do we change it everytime ? No instead we make it portable using magic constants like __FILE__ . Take a closer look : //suppose your script is /var/www/project/index.php//Then __FILE__ will always have that full path.define('ROOT' , pathinfo(__FILE__, PATHINFO_DIRNAME));require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code So now even if you shift your project to a different directory , like moving it to an online server , the same code will run without any changes. 2. Dont use require , include , require_once or include_once Your script could be including various files on top , like class libraries , files for utility and helper functions etc like this : require_once('lib/Database.php');require_once('lib/Mail.php');require_once('helpers/utitlity_functions.php'); This is rather primitive. The code needs to be more flexible. Write up helper functions to include things more easily. Lets take an example : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); require_once( $path ); }load_class('Database');load_class('Mail'); See any difference ? You must. It does not need any more explanation. You can improve this further if you wish to like this : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); if(file_exists($path)) { require_once( $path ); }} There are a lot of things that can be done with this : Search multiple directories for the same class file. Change the directory containing class files easily , without breaking the code anywhere. Use similar functions for loading files that contain helper functions , html content etc. 3. Maintain debugging environment in your application During development we echo database queries , dump variables which are creating problems , and then once the problem is solved , we comment them or erase them. But its a good idea to let everything stay and help in the long run On your development machine you can do this : define('ENVIRONMENT' , 'development');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } And on the server you can do this : define('ENVIRONMENT' , 'production');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } 4. Propagate status messages via session Status messages are those messages that are generated after doing a task. <?phpif($wrong_username || $wrong_password){ $msg = 'Invalid username or password';}?><html><body><?php echo $msg; ?><form>...</form></body></html> Code like that is common. Using variables to show status messages has limitations. They cannot be send via redirects (unless you propagate them as GET variables to the next script , which is very silly). In large scripts there might be multiple messages etc. Best way is to use session to propagate them (even if on same page). For this there has to be a session_start on every page. function set_flash($msg){ $_SESSION['message'] = $msg;}function get_flash(){ $msg = $_SESSION['message']; unset($_SESSION['message']); return $msg;} and in your script : <?phpif($wrong_username || $wrong_password){ set_flash('Invalid username or password');}?><html><body>Status is : <?php echo get_flash(); ?><form>...</form></body></html> 5. Make your functions flexible function add_to_cart($item_id , $qty){ $_SESSION['cart'][$item_id] = $qty;}add_to_cart( 'IPHONE3' , 2 ); When adding a single item you use the above function. When adding multiple items , will you create another function ? NO. Just make the function flexible enough to take different kinds of parameters. Have a closer look : function add_to_cart($item_id , $qty){ if(!is_array($item_id)) { $_SESSION['cart'][$item_id] = $qty; } else { foreach($item_id as $i_id => $qty) { $_SESSION['cart'][$i_id] = $qty; } }}add_to_cart( 'IPHONE3' , 2 );add_to_cart( array('IPHONE3' => 2 , 'IPAD' => 5) ); So now the same function can accept different kinds of output. The above can be applied in lots of places to make your code more agile. 6. Omit the closing php tag if it is the last thing in a script I wonder why this tip is omitted from so many blog posts on php tips. <?phpecho "Hello";//Now dont close this tag This will save you lots of problem. Lets take an example : A class file super_class.php <?phpclass super_class{ function super_function() { //super code }}?>//super extra character after the closing tag Now index.php require_once('super_class.php');//echo an image or pdf , or set the cookies or session data And you will get Headers already send error. Why ? because the "super extra character" has been echoed , and all headers went along with that. Now you start debugging. You may have to waste many hours to find the super extra space. Hence make it a habit to omit the closing tag : <?phpclass super_class{ function super_function() { //super code }}//No closing tag Thats better. 7. Collect all output at one place , and output at one shot to the browser This is called output buffering. Lets say you have been echoing content from different functions like this : function print_header(){ echo "<div id='header'>Site Log and Login links</div>";}function print_footer(){ echo "<div id='footer'>Site was made by me</div>";}print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}print_footer(); Instead of doing like that , first collect all output in one place. You can either store it inside variables in the functions or use ob_start and ob_end_clean. So now it should look like function print_header(){ $o = "<div id='header'>Site Log and Login links</div>"; return $o;}function print_footer(){ $o = "<div id='footer'>Site was made by me</div>"; return $o;}echo print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}echo print_footer(); So why should you do output buffering : You can change the output just before sending it to browser if you need to. Think about doing some str_replaces , or may be preg_replaces or may be adding some extra html at the end like profiler/debugger output Its a bad idea to send output to browser and do php processing at the same time. Have you ever seen a website where there is a Fatal error in the sidebar or in a box in the middle of the screen. You know why that happens ? Because processing and output are being mixed. 8. Send correct mime types via header when outputting non-html content Lets echo some xml. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataecho $xml; Works fine. But it needs some improvement. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataheader("content-type: text/xml");echo $xml; Note that header line. That line tells the browser that the content is xml content. So the browser can handle it correctly. Many javascript libraries also rely on header information. Similarly for javascript , css , jpg image , png image : Javascript header("content-type: application/x-javascript");echo "var a = 10"; CSS header("content-type: text/css");echo "#div id { background:#000; }"; 9. Set the correct character encoding for a mysql connection Ever faced a problem that unicode/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation. $host = 'localhost';$username = 'root';$password = 'super_secret';//Attempt to connect to database$c = mysqli_connect($host , $username, $password); //Check connection validityif (!$c) { die ("Could not connect to the database host: <br />". mysqli_connect_error());} //Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){ die('mysqli_set_charset() failed');} Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application. Otherwise what will happen ? You will see lots of boxes and ???????? in non english text. 10. Use htmlentities with the correct characterset option Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc. $value = htmlentities($this->value , ENT_QUOTES , 'UTF-8'); Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual. 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php. Use apache mod_gzip/mod_deflate to compress content via the .htaccess file. 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php. $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= "'$image' ,";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;//Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,]; Be smart. use json_encode : $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;//Output is : var images = ["myself.png","friends.png","colleagues.png"] Isn't that neat ? 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of "debugging" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on. Make sure that your application is as intelligent as possible and reports the most important information in the shortest time. $contents = "All the content";$file_path = "/var/www/project/content.txt";file_put_contents($file_path , $contents); That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons : Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file. $contents = "All the content";$dir = '/var/www/project';$file_path = $dir . "/content.txt";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die("Directory $dir is not writable, or does not exist. Please check");} By doing this you get the accurate information that where is a file write failing and why 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are "accessible" outside. Otherwise for example the files may be created by "php" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on. // Read and write for owner, read for everybody elsechmod("/somedir/somefile", 0644);// Everything for owner, read and execute for otherschmod("/somedir/somefile", 0755); 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ //Save the things} The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this : if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ //Save the things} Now you are free from the value the submit button 16. Use static variables in function where they always have same value //Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} Instead use static variables as : //Delay for some timefunction delay(){ static $sync_delay = null; if($sync_delay == null) { $sync_delay = get_option('sync_delay'); } echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} 17. Don't use the $_SESSION variable directly Some simple examples are : $_SESSION['username'] = $username;$username = $_SESSION['username']; But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain. Hence use application specific keys with wrapper functions : define('APP_ID' , 'abc_corp_ecommerce');//Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}//Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;} 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like : function utility_a(){ //This function does a utility thing like string processing}function utility_b(){ //This function does nother utility thing like database processing}function utility_c(){ //This function is ...} And you use the function throughout your application freely. You may want to wrap them into a class as static functions : class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}//and call them as $a = Utility::utility_a();$b = Utility::utility_b(); One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else. 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++; Its absolutely a WASTE. Write if($a == true){ $a_count++;} Dont try to make your code shorter by eating up syntax. Rather make your logic shorter. Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this : foreach($arr as $c => $v){ $arr[$c] = trim($v);} But it can more cleaner with array_map : $arr = array_map('trim' , $arr); This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more. 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters. The php filter extension provides simple way to validate or check values as being a valid 'something'. 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate']; Its a good habit. 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded : $db_records_in_array_format; //This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; //2MB moresome_function($cc); //Another 2MB ? The above thing is common when importing a csv file or exporting table to a csv file Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays. Consider passing them by reference , or storing them in a class variable : $a = get_large_array();pass_to_function(&$a); by doing this the same variable (and not its copy) will be available to the function. Check documentation class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { //process $this->a }} unset them as soon as possible , so that memory is freed and rest of the script can relax. Here is a simple demonstration of how assign by reference can save memory in some cases <?phpini_set('display_errors' , true);error_reporting(E_ALL);$a = array();for($i = 0; $i < 100000 ; $i++){ $a[$i] = 'A'.$i;}echo 'Memory usage in MB : '. memory_get_usage() / 1000000 . '<br />';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() / 1000000 . '<br />';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() / 1000000 . '<br />';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() / 1000000 . '<br />'; The output on a typical php 5.4 machine is : Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more. 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this : function add_to_cart(){ $db = new Database(); $db->query("INSERT INTO cart .....");}function empty_cart(){ $db = new Database(); $db->query("DELETE FROM cart .....");} Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory. Use the singleton pattern for special cases like database connection. 26. Avoid direct SQL query , abstract it $query = "INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')";$db->query($query); //call to mysqli_query() The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like: All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries. A very simple example of an activerecord insert function can be like this : function insert_record($table_name , $data){ foreach($data as $key => $value) { //mysqli_real_escape_string $data[$key] = $db->mres($value); } $fields = implode(',' , array_keys($data)); $values = "'" . implode("','" , array_values($data)) . "'"; //Final query $query = "INSERT INTO {$table}($fields) VALUES($values)"; return $db->query($query);}//data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);//perform the INSERT queryinsert_record('users' , $data); The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse). This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise. 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again. Benefits : Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue. Storing session in database makes many other things easier like: Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example : <head> <base href="http://www.domain.com/store/"></head><body> <img src="/static/imghw/default1.png" data-src="happy.jpg" class="lazy" / alt="40+ Useful Php tips for beginners ? Part 1" ></body></html> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories. Lets take an example www.domain.com/store/home.php www.domain.com/store/products/ipad.php In home.php the following can be written : <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> But in ipad.php the links have to be like this : <a href="../home.php">Home</a><a href="ipad.php">Ipad</a> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag. <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products/ipad.php 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing. ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT); On production , the display should be disabled. ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark. After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set. ini_set('log_errors' , '1');ini_set('error_log' , '/path/to/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); Note : 1. The path '/path/to/errors.txt' should be writable by the web server for errors to be logged there. 2. A separate error file is specified , otherwise all logs would go inside the apache/web server error log and get mixed up with other apache errors. 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver). 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like /var/log dont have to searched. 5. Dont set error_reporting to 0. It will not log anything then. Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file. Set 'display_errors=On' in php.ini on development machine On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page. Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work. Set 'display_errors=Off' in php.ini on production machine Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away. 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results. On a 64 bit machine you can see such output. $ php -aInteractive shellphp > echo strtotime("0000-00-00 00:00:00");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600 But on a 32 bit machine all of them would give bool(false). Check here for more. What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines. 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this : set_time_limit(30);//Rest of the code It may not always work. Any execution that happens outside the script via system calls/os functions like socket operations, database operations etc. will not be under control of set_time_limit. So if a database operation takes lot of time or "hangs" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time. 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it. A better solution : /** Method to execute a command in the terminal Uses : 1. system 2. passthru 3. exec 4. shell_exec*/function terminal($command){ //system if(function_exists('system')) { ob_start(); system($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //passthru else if(function_exists('passthru')) { ob_start(); passthru($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //exec else if(function_exists('exec')) { exec($command , $output , $return_var); $output = implode("\n" , $output); } //shell_exec else if(function_exists('shell_exec')) { $output = shell_exec($command) ; } else { $output = 'Command execution not possible on this system'; $return_var = 1; } return array('output' => $output , 'status' => $return_var);}terminal('ls'); The above function will execute the shell command using whichever function is available , keeping your code consistent. 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user. 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise. Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind. 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily. Few popular libraries are : mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference. 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code. Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community. They contain user feedback, expert advice and useful code snippets. So check them out. 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!! 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc. The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more 1. Codeigniter 2. WordPress 3. Joomla CMS 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment. Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster. Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free. 本站聲明 本文內(nèi)容由網(wǎng)友自發(fā)貢獻,版權(quán)歸原作者所有,本站不承擔相應(yīng)法律責任。如您發(fā)現(xiàn)有涉嫌抄襲侵權(quán)的內(nèi)容,請聯(lián)系admin@php.cn 熱AI工具 Undress AI Tool 免費脫衣服圖片 Undresser.AI Undress 人工智能驅(qū)動的應(yīng)用程序,用于創(chuàng)建逼真的裸體照片 AI Clothes Remover 用于從照片中去除衣服的在線人工智能工具。 Clothoff.io AI脫衣機 Video Face Swap 使用我們完全免費的人工智能換臉工具輕松在任何視頻中換臉! 顯示更多 熱門文章 指南:恒星刀片保存文件位置/保存文件丟失/不保存 4 周前 By DDD Oguri Cap Build Guide |漂亮的德比志 2 周前 By Jack chen Agnes Tachyon Build Guide |漂亮的德比志 1 周前 By Jack chen 沙丘:覺醒 - 高級行星學家Quest演練 4 周前 By Jack chen 約會一切:德克和哈珀關(guān)系指南 4 周前 By Jack chen 顯示更多 熱工具 記事本++7.3.1 好用且免費的代碼編輯器 SublimeText3漢化版 中文版,非常好用 禪工作室 13.0.1 功能強大的PHP集成開發(fā)環(huán)境 Dreamweaver CS6 視覺化網(wǎng)頁開發(fā)工具 SublimeText3 Mac版 神級代碼編輯軟件(SublimeText3) 顯示更多 熱門話題 gmail郵箱登陸入口在哪里 8638 17 Java教程 1783 16 CakePHP 教程 1728 56 Laravel 教程 1578 28 PHP教程 1442 31 顯示更多 Related knowledge 如何在PHP中實施身份驗證和授權(quán)? Jun 20, 2025 am 01:03 AM tosecurelyhandleauthenticationandationallizationInphp,lofterTheSesteps:1.AlwaysHashPasswordSwithPassword_hash()andverifyusingspasspassword_verify(),usepreparedStatatementStopreventsqlineptions,andStoreSeruserDatain usseruserDatain $ _sessiveferterlogin.2.implementrole-2.imaccessccsccccccccccccccccccccccccc. 如何在PHP中安全地處理文件上傳? Jun 19, 2025 am 01:05 AM 要安全處理PHP中的文件上傳,核心在于驗證文件類型、重命名文件并限制權(quán)限。1.使用finfo_file()檢查真實MIME類型,僅允許特定類型如image/jpeg;2.用uniqid()生成隨機文件名,存儲至非Web根目錄;3.通過php.ini和HTML表單限制文件大小,設(shè)置目錄權(quán)限為0755;4.使用ClamAV掃描惡意軟件,增強安全性。這些步驟有效防止安全漏洞,確保文件上傳過程安全可靠。 PHP中==(松散比較)和===(嚴格的比較)之間有什么區(qū)別? Jun 19, 2025 am 01:07 AM 在PHP中,==與===的主要區(qū)別在于類型檢查的嚴格程度。==在比較前會進行類型轉(zhuǎn)換,例如5=="5"返回true,而===要求值和類型都相同才會返回true,例如5==="5"返回false。使用場景上,===更安全應(yīng)優(yōu)先使用,==僅在需要類型轉(zhuǎn)換時使用。 如何在PHP( - , *, /,%)中執(zhí)行算術(shù)操作? Jun 19, 2025 pm 05:13 PM PHP中使用基本數(shù)學運算的方法如下:1.加法用 號,支持整數(shù)和浮點數(shù),也可用于變量,字符串數(shù)字會自動轉(zhuǎn)換但不推薦依賴;2.減法用-號,變量同理,類型轉(zhuǎn)換同樣適用;3.乘法用*號,適用于數(shù)字及類似字符串;4.除法用/號,需避免除以零,并注意結(jié)果可能是浮點數(shù);5.取模用%號,可用于判斷奇偶數(shù),處理負數(shù)時余數(shù)符號與被除數(shù)一致。正確使用這些運算符的關(guān)鍵在于確保數(shù)據(jù)類型清晰并處理好邊界情況。 如何與PHP的NOSQL數(shù)據(jù)庫(例如MongoDB,Redis)進行交互? Jun 19, 2025 am 01:07 AM 是的,PHP可以通過特定擴展或庫與MongoDB和Redis等NoSQL數(shù)據(jù)庫交互。首先,使用MongoDBPHP驅(qū)動(通過PECL或Composer安裝)創(chuàng)建客戶端實例并操作數(shù)據(jù)庫及集合,支持插入、查詢、聚合等操作;其次,使用Predis庫或phpredis擴展連接Redis,執(zhí)行鍵值設(shè)置與獲取,推薦phpredis用于高性能場景,Predis則便于快速部署;兩者均適用于生產(chǎn)環(huán)境且文檔完善。 我如何了解最新的PHP開發(fā)和最佳實踐? Jun 23, 2025 am 12:56 AM TostaycurrentwithPHPdevelopmentsandbestpractices,followkeynewssourceslikePHP.netandPHPWeekly,engagewithcommunitiesonforumsandconferences,keeptoolingupdatedandgraduallyadoptnewfeatures,andreadorcontributetoopensourceprojects.First,followreliablesource 什么是PHP,為什么它用于Web開發(fā)? Jun 23, 2025 am 12:55 AM PHPbecamepopularforwebdevelopmentduetoitseaseoflearning,seamlessintegrationwithHTML,widespreadhostingsupport,andalargeecosystemincludingframeworkslikeLaravelandCMSplatformslikeWordPress.Itexcelsinhandlingformsubmissions,managingusersessions,interacti 如何設(shè)置PHP時區(qū)? Jun 25, 2025 am 01:00 AM tosetTherightTimeZoneInphp,restate_default_timezone_set()functionAtthestArtofyourscriptWithavalIdidentIdentifiersuchas'america/new_york'.1.usedate_default_default_timezone_set_set() See all articles
The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories.<\/p>
Lets take an example<\/p>
www.domain.com\/store\/home.php www.domain.com\/store\/products\/ipad.php<\/p>
In home.php the following can be written :<\/p>
Home<\/a>Ipad<\/a><\/pre> But in ipad.php the links have to be like this :<\/p> Home<\/a>Ipad<\/a><\/pre> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag.<\/p> <\/head>Home<\/a>Ipad<\/a><\/body><\/html><\/pre> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products\/ipad.php<\/p> 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing.<\/p> ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT);<\/pre> On production , the display should be disabled.<\/p> ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark.<\/p> After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set.<\/p> ini_set('log_errors' , '1');ini_set('error_log' , '\/path\/to\/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> Note :<\/p> 1. The path '\/path\/to\/errors.txt' should be writable by the web server for errors to be logged there.<\/p> 2. A separate error file is specified , otherwise all logs would go inside the apache\/web server error log and get mixed up with other apache errors.<\/p> 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver).<\/p> 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like \/var\/log dont have to searched.<\/p> 5. Dont set error_reporting to 0. It will not log anything then.<\/p> Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file.<\/p> Set 'display_errors=On' in php.ini on development machine<\/p> On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page.<\/p> Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work.<\/p> Set 'display_errors=Off' in php.ini on production machine<\/p> Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away.<\/p> 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results.<\/p> On a 64 bit machine you can see such output.<\/p> $ php -aInteractive shellphp > echo strtotime(\"0000-00-00 00:00:00\");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600<\/pre> But on a 32 bit machine all of them would give bool(false). Check here for more.<\/p> What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines.<\/p> 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this :<\/p> set_time_limit(30);\/\/Rest of the code<\/pre> It may not always work. Any execution that happens outside the script via system calls\/os functions like socket operations, database operations etc. will not be under control of set_time_limit.<\/p> So if a database operation takes lot of time or \"hangs\" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time.<\/p> 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it.<\/p> A better solution :<\/p> \/**\tMethod to execute a command in the terminal\tUses :\t1. system\t2. passthru\t3. exec\t4. shell_exec*\/function terminal($command){\t\/\/system\tif(function_exists('system'))\t{\t\tob_start();\t\tsystem($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/passthru\telse if(function_exists('passthru'))\t{\t\tob_start();\t\tpassthru($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/exec\telse if(function_exists('exec'))\t{\t\texec($command , $output , $return_var);\t\t$output = implode(\"\\n\" , $output);\t}\t\/\/shell_exec\telse if(function_exists('shell_exec'))\t{\t\t$output = shell_exec($command) ;\t}\telse\t{\t\t$output = 'Command execution not possible on this system';\t\t$return_var = 1;\t}\treturn array('output' => $output , 'status' => $return_var);}terminal('ls');<\/pre> The above function will execute the shell command using whichever function is available , keeping your code consistent.<\/p> 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user.<\/p> 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise.<\/p> Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind.<\/p> 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily.<\/p> Few popular libraries are :<\/p> mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference.<\/p> 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code.<\/p> Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community.<\/p> They contain user feedback, expert advice and useful code snippets. So check them out.<\/p> 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!!<\/p> 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc.<\/p> The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more<\/p> 1. Codeigniter 2. WordPress 3. Joomla CMS<\/p> 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment.<\/p> Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster.<\/p> Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free.<\/p> "} 社區(qū) 文章 合集 問答 學習 課程 編程詞典 工具庫 開發(fā)工具 網(wǎng)站源碼 PHP 庫 JS特效 網(wǎng)站素材 擴展插件 AI工具 休閑 游戲下載 游戲教程 簡體中文 簡體中文 English 繁體中文 日本語 ??? Melayu Fran?ais Deutsch Login singup 首頁 后端開發(fā) php教程 40+ Useful Php tips for beginners ? Part 1 40+ Useful Php tips for beginners ? Part 1 WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB Jun 23, 2016 pm 02:37 PM PHP學習指南 http://www.binarytides.com/category/php-2/tutorial/ In this series we are going to look into some useful tips and techniques that can be used to improve and optimise your php code. Note that these php tips are meant for beginners and not those who are already using mvc frameworks etc. The Techniques 1. Do not use relative paths , instead define a ROOT path Its quite common to see such lines : require_once('http://www.cnblogs.com/lib/some_class.php'); This approach has many drawbacks : It first searches for directories specified in the include paths of php , then looks from the current directory. So many directories are checked. When a script is included by another script in a different directory , its base directory changes to that of the including script. Another issue , is that when a script is being run from cron , it may not have its parent directory as the working directory. So its a good idea to have absolute paths : define('ROOT' , '/var/www/project/');require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code Now this is an absolute path and will always stay constant. But we can improve this further. The directory /var/www/project can change , so do we change it everytime ? No instead we make it portable using magic constants like __FILE__ . Take a closer look : //suppose your script is /var/www/project/index.php//Then __FILE__ will always have that full path.define('ROOT' , pathinfo(__FILE__, PATHINFO_DIRNAME));require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code So now even if you shift your project to a different directory , like moving it to an online server , the same code will run without any changes. 2. Dont use require , include , require_once or include_once Your script could be including various files on top , like class libraries , files for utility and helper functions etc like this : require_once('lib/Database.php');require_once('lib/Mail.php');require_once('helpers/utitlity_functions.php'); This is rather primitive. The code needs to be more flexible. Write up helper functions to include things more easily. Lets take an example : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); require_once( $path ); }load_class('Database');load_class('Mail'); See any difference ? You must. It does not need any more explanation. You can improve this further if you wish to like this : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); if(file_exists($path)) { require_once( $path ); }} There are a lot of things that can be done with this : Search multiple directories for the same class file. Change the directory containing class files easily , without breaking the code anywhere. Use similar functions for loading files that contain helper functions , html content etc. 3. Maintain debugging environment in your application During development we echo database queries , dump variables which are creating problems , and then once the problem is solved , we comment them or erase them. But its a good idea to let everything stay and help in the long run On your development machine you can do this : define('ENVIRONMENT' , 'development');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } And on the server you can do this : define('ENVIRONMENT' , 'production');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } 4. Propagate status messages via session Status messages are those messages that are generated after doing a task. <?phpif($wrong_username || $wrong_password){ $msg = 'Invalid username or password';}?><html><body><?php echo $msg; ?><form>...</form></body></html> Code like that is common. Using variables to show status messages has limitations. They cannot be send via redirects (unless you propagate them as GET variables to the next script , which is very silly). In large scripts there might be multiple messages etc. Best way is to use session to propagate them (even if on same page). For this there has to be a session_start on every page. function set_flash($msg){ $_SESSION['message'] = $msg;}function get_flash(){ $msg = $_SESSION['message']; unset($_SESSION['message']); return $msg;} and in your script : <?phpif($wrong_username || $wrong_password){ set_flash('Invalid username or password');}?><html><body>Status is : <?php echo get_flash(); ?><form>...</form></body></html> 5. Make your functions flexible function add_to_cart($item_id , $qty){ $_SESSION['cart'][$item_id] = $qty;}add_to_cart( 'IPHONE3' , 2 ); When adding a single item you use the above function. When adding multiple items , will you create another function ? NO. Just make the function flexible enough to take different kinds of parameters. Have a closer look : function add_to_cart($item_id , $qty){ if(!is_array($item_id)) { $_SESSION['cart'][$item_id] = $qty; } else { foreach($item_id as $i_id => $qty) { $_SESSION['cart'][$i_id] = $qty; } }}add_to_cart( 'IPHONE3' , 2 );add_to_cart( array('IPHONE3' => 2 , 'IPAD' => 5) ); So now the same function can accept different kinds of output. The above can be applied in lots of places to make your code more agile. 6. Omit the closing php tag if it is the last thing in a script I wonder why this tip is omitted from so many blog posts on php tips. <?phpecho "Hello";//Now dont close this tag This will save you lots of problem. Lets take an example : A class file super_class.php <?phpclass super_class{ function super_function() { //super code }}?>//super extra character after the closing tag Now index.php require_once('super_class.php');//echo an image or pdf , or set the cookies or session data And you will get Headers already send error. Why ? because the "super extra character" has been echoed , and all headers went along with that. Now you start debugging. You may have to waste many hours to find the super extra space. Hence make it a habit to omit the closing tag : <?phpclass super_class{ function super_function() { //super code }}//No closing tag Thats better. 7. Collect all output at one place , and output at one shot to the browser This is called output buffering. Lets say you have been echoing content from different functions like this : function print_header(){ echo "<div id='header'>Site Log and Login links</div>";}function print_footer(){ echo "<div id='footer'>Site was made by me</div>";}print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}print_footer(); Instead of doing like that , first collect all output in one place. You can either store it inside variables in the functions or use ob_start and ob_end_clean. So now it should look like function print_header(){ $o = "<div id='header'>Site Log and Login links</div>"; return $o;}function print_footer(){ $o = "<div id='footer'>Site was made by me</div>"; return $o;}echo print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}echo print_footer(); So why should you do output buffering : You can change the output just before sending it to browser if you need to. Think about doing some str_replaces , or may be preg_replaces or may be adding some extra html at the end like profiler/debugger output Its a bad idea to send output to browser and do php processing at the same time. Have you ever seen a website where there is a Fatal error in the sidebar or in a box in the middle of the screen. You know why that happens ? Because processing and output are being mixed. 8. Send correct mime types via header when outputting non-html content Lets echo some xml. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataecho $xml; Works fine. But it needs some improvement. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataheader("content-type: text/xml");echo $xml; Note that header line. That line tells the browser that the content is xml content. So the browser can handle it correctly. Many javascript libraries also rely on header information. Similarly for javascript , css , jpg image , png image : Javascript header("content-type: application/x-javascript");echo "var a = 10"; CSS header("content-type: text/css");echo "#div id { background:#000; }"; 9. Set the correct character encoding for a mysql connection Ever faced a problem that unicode/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation. $host = 'localhost';$username = 'root';$password = 'super_secret';//Attempt to connect to database$c = mysqli_connect($host , $username, $password); //Check connection validityif (!$c) { die ("Could not connect to the database host: <br />". mysqli_connect_error());} //Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){ die('mysqli_set_charset() failed');} Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application. Otherwise what will happen ? You will see lots of boxes and ???????? in non english text. 10. Use htmlentities with the correct characterset option Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc. $value = htmlentities($this->value , ENT_QUOTES , 'UTF-8'); Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual. 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php. Use apache mod_gzip/mod_deflate to compress content via the .htaccess file. 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php. $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= "'$image' ,";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;//Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,]; Be smart. use json_encode : $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;//Output is : var images = ["myself.png","friends.png","colleagues.png"] Isn't that neat ? 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of "debugging" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on. Make sure that your application is as intelligent as possible and reports the most important information in the shortest time. $contents = "All the content";$file_path = "/var/www/project/content.txt";file_put_contents($file_path , $contents); That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons : Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file. $contents = "All the content";$dir = '/var/www/project';$file_path = $dir . "/content.txt";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die("Directory $dir is not writable, or does not exist. Please check");} By doing this you get the accurate information that where is a file write failing and why 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are "accessible" outside. Otherwise for example the files may be created by "php" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on. // Read and write for owner, read for everybody elsechmod("/somedir/somefile", 0644);// Everything for owner, read and execute for otherschmod("/somedir/somefile", 0755); 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ //Save the things} The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this : if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ //Save the things} Now you are free from the value the submit button 16. Use static variables in function where they always have same value //Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} Instead use static variables as : //Delay for some timefunction delay(){ static $sync_delay = null; if($sync_delay == null) { $sync_delay = get_option('sync_delay'); } echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} 17. Don't use the $_SESSION variable directly Some simple examples are : $_SESSION['username'] = $username;$username = $_SESSION['username']; But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain. Hence use application specific keys with wrapper functions : define('APP_ID' , 'abc_corp_ecommerce');//Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}//Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;} 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like : function utility_a(){ //This function does a utility thing like string processing}function utility_b(){ //This function does nother utility thing like database processing}function utility_c(){ //This function is ...} And you use the function throughout your application freely. You may want to wrap them into a class as static functions : class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}//and call them as $a = Utility::utility_a();$b = Utility::utility_b(); One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else. 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++; Its absolutely a WASTE. Write if($a == true){ $a_count++;} Dont try to make your code shorter by eating up syntax. Rather make your logic shorter. Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this : foreach($arr as $c => $v){ $arr[$c] = trim($v);} But it can more cleaner with array_map : $arr = array_map('trim' , $arr); This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more. 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters. The php filter extension provides simple way to validate or check values as being a valid 'something'. 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate']; Its a good habit. 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded : $db_records_in_array_format; //This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; //2MB moresome_function($cc); //Another 2MB ? The above thing is common when importing a csv file or exporting table to a csv file Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays. Consider passing them by reference , or storing them in a class variable : $a = get_large_array();pass_to_function(&$a); by doing this the same variable (and not its copy) will be available to the function. Check documentation class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { //process $this->a }} unset them as soon as possible , so that memory is freed and rest of the script can relax. Here is a simple demonstration of how assign by reference can save memory in some cases <?phpini_set('display_errors' , true);error_reporting(E_ALL);$a = array();for($i = 0; $i < 100000 ; $i++){ $a[$i] = 'A'.$i;}echo 'Memory usage in MB : '. memory_get_usage() / 1000000 . '<br />';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() / 1000000 . '<br />';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() / 1000000 . '<br />';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() / 1000000 . '<br />'; The output on a typical php 5.4 machine is : Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more. 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this : function add_to_cart(){ $db = new Database(); $db->query("INSERT INTO cart .....");}function empty_cart(){ $db = new Database(); $db->query("DELETE FROM cart .....");} Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory. Use the singleton pattern for special cases like database connection. 26. Avoid direct SQL query , abstract it $query = "INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')";$db->query($query); //call to mysqli_query() The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like: All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries. A very simple example of an activerecord insert function can be like this : function insert_record($table_name , $data){ foreach($data as $key => $value) { //mysqli_real_escape_string $data[$key] = $db->mres($value); } $fields = implode(',' , array_keys($data)); $values = "'" . implode("','" , array_values($data)) . "'"; //Final query $query = "INSERT INTO {$table}($fields) VALUES($values)"; return $db->query($query);}//data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);//perform the INSERT queryinsert_record('users' , $data); The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse). This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise. 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again. Benefits : Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue. Storing session in database makes many other things easier like: Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example : <head> <base href="http://www.domain.com/store/"></head><body> <img src="/static/imghw/default1.png" data-src="happy.jpg" class="lazy" / alt="40+ Useful Php tips for beginners ? Part 1" ></body></html> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories. Lets take an example www.domain.com/store/home.php www.domain.com/store/products/ipad.php In home.php the following can be written : <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> But in ipad.php the links have to be like this : <a href="../home.php">Home</a><a href="ipad.php">Ipad</a> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag. <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products/ipad.php 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing. ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT); On production , the display should be disabled. ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark. After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set. ini_set('log_errors' , '1');ini_set('error_log' , '/path/to/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); Note : 1. The path '/path/to/errors.txt' should be writable by the web server for errors to be logged there. 2. A separate error file is specified , otherwise all logs would go inside the apache/web server error log and get mixed up with other apache errors. 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver). 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like /var/log dont have to searched. 5. Dont set error_reporting to 0. It will not log anything then. Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file. Set 'display_errors=On' in php.ini on development machine On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page. Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work. Set 'display_errors=Off' in php.ini on production machine Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away. 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results. On a 64 bit machine you can see such output. $ php -aInteractive shellphp > echo strtotime("0000-00-00 00:00:00");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600 But on a 32 bit machine all of them would give bool(false). Check here for more. What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines. 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this : set_time_limit(30);//Rest of the code It may not always work. Any execution that happens outside the script via system calls/os functions like socket operations, database operations etc. will not be under control of set_time_limit. So if a database operation takes lot of time or "hangs" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time. 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it. A better solution : /** Method to execute a command in the terminal Uses : 1. system 2. passthru 3. exec 4. shell_exec*/function terminal($command){ //system if(function_exists('system')) { ob_start(); system($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //passthru else if(function_exists('passthru')) { ob_start(); passthru($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //exec else if(function_exists('exec')) { exec($command , $output , $return_var); $output = implode("\n" , $output); } //shell_exec else if(function_exists('shell_exec')) { $output = shell_exec($command) ; } else { $output = 'Command execution not possible on this system'; $return_var = 1; } return array('output' => $output , 'status' => $return_var);}terminal('ls'); The above function will execute the shell command using whichever function is available , keeping your code consistent. 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user. 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise. Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind. 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily. Few popular libraries are : mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference. 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code. Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community. They contain user feedback, expert advice and useful code snippets. So check them out. 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!! 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc. The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more 1. Codeigniter 2. WordPress 3. Joomla CMS 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment. Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster. Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free. 本站聲明 本文內(nèi)容由網(wǎng)友自發(fā)貢獻,版權(quán)歸原作者所有,本站不承擔相應(yīng)法律責任。如您發(fā)現(xiàn)有涉嫌抄襲侵權(quán)的內(nèi)容,請聯(lián)系admin@php.cn 熱AI工具 Undress AI Tool 免費脫衣服圖片 Undresser.AI Undress 人工智能驅(qū)動的應(yīng)用程序,用于創(chuàng)建逼真的裸體照片 AI Clothes Remover 用于從照片中去除衣服的在線人工智能工具。 Clothoff.io AI脫衣機 Video Face Swap 使用我們完全免費的人工智能換臉工具輕松在任何視頻中換臉! 顯示更多 熱門文章 指南:恒星刀片保存文件位置/保存文件丟失/不保存 4 周前 By DDD Oguri Cap Build Guide |漂亮的德比志 2 周前 By Jack chen Agnes Tachyon Build Guide |漂亮的德比志 1 周前 By Jack chen 沙丘:覺醒 - 高級行星學家Quest演練 4 周前 By Jack chen 約會一切:德克和哈珀關(guān)系指南 4 周前 By Jack chen 顯示更多 熱工具 記事本++7.3.1 好用且免費的代碼編輯器 SublimeText3漢化版 中文版,非常好用 禪工作室 13.0.1 功能強大的PHP集成開發(fā)環(huán)境 Dreamweaver CS6 視覺化網(wǎng)頁開發(fā)工具 SublimeText3 Mac版 神級代碼編輯軟件(SublimeText3) 顯示更多 熱門話題 gmail郵箱登陸入口在哪里 8638 17 Java教程 1783 16 CakePHP 教程 1728 56 Laravel 教程 1578 28 PHP教程 1442 31 顯示更多 Related knowledge 如何在PHP中實施身份驗證和授權(quán)? Jun 20, 2025 am 01:03 AM tosecurelyhandleauthenticationandationallizationInphp,lofterTheSesteps:1.AlwaysHashPasswordSwithPassword_hash()andverifyusingspasspassword_verify(),usepreparedStatatementStopreventsqlineptions,andStoreSeruserDatain usseruserDatain $ _sessiveferterlogin.2.implementrole-2.imaccessccsccccccccccccccccccccccccc. 如何在PHP中安全地處理文件上傳? Jun 19, 2025 am 01:05 AM 要安全處理PHP中的文件上傳,核心在于驗證文件類型、重命名文件并限制權(quán)限。1.使用finfo_file()檢查真實MIME類型,僅允許特定類型如image/jpeg;2.用uniqid()生成隨機文件名,存儲至非Web根目錄;3.通過php.ini和HTML表單限制文件大小,設(shè)置目錄權(quán)限為0755;4.使用ClamAV掃描惡意軟件,增強安全性。這些步驟有效防止安全漏洞,確保文件上傳過程安全可靠。 PHP中==(松散比較)和===(嚴格的比較)之間有什么區(qū)別? Jun 19, 2025 am 01:07 AM 在PHP中,==與===的主要區(qū)別在于類型檢查的嚴格程度。==在比較前會進行類型轉(zhuǎn)換,例如5=="5"返回true,而===要求值和類型都相同才會返回true,例如5==="5"返回false。使用場景上,===更安全應(yīng)優(yōu)先使用,==僅在需要類型轉(zhuǎn)換時使用。 如何在PHP( - , *, /,%)中執(zhí)行算術(shù)操作? Jun 19, 2025 pm 05:13 PM PHP中使用基本數(shù)學運算的方法如下:1.加法用 號,支持整數(shù)和浮點數(shù),也可用于變量,字符串數(shù)字會自動轉(zhuǎn)換但不推薦依賴;2.減法用-號,變量同理,類型轉(zhuǎn)換同樣適用;3.乘法用*號,適用于數(shù)字及類似字符串;4.除法用/號,需避免除以零,并注意結(jié)果可能是浮點數(shù);5.取模用%號,可用于判斷奇偶數(shù),處理負數(shù)時余數(shù)符號與被除數(shù)一致。正確使用這些運算符的關(guān)鍵在于確保數(shù)據(jù)類型清晰并處理好邊界情況。 如何與PHP的NOSQL數(shù)據(jù)庫(例如MongoDB,Redis)進行交互? Jun 19, 2025 am 01:07 AM 是的,PHP可以通過特定擴展或庫與MongoDB和Redis等NoSQL數(shù)據(jù)庫交互。首先,使用MongoDBPHP驅(qū)動(通過PECL或Composer安裝)創(chuàng)建客戶端實例并操作數(shù)據(jù)庫及集合,支持插入、查詢、聚合等操作;其次,使用Predis庫或phpredis擴展連接Redis,執(zhí)行鍵值設(shè)置與獲取,推薦phpredis用于高性能場景,Predis則便于快速部署;兩者均適用于生產(chǎn)環(huán)境且文檔完善。 我如何了解最新的PHP開發(fā)和最佳實踐? Jun 23, 2025 am 12:56 AM TostaycurrentwithPHPdevelopmentsandbestpractices,followkeynewssourceslikePHP.netandPHPWeekly,engagewithcommunitiesonforumsandconferences,keeptoolingupdatedandgraduallyadoptnewfeatures,andreadorcontributetoopensourceprojects.First,followreliablesource 什么是PHP,為什么它用于Web開發(fā)? Jun 23, 2025 am 12:55 AM PHPbecamepopularforwebdevelopmentduetoitseaseoflearning,seamlessintegrationwithHTML,widespreadhostingsupport,andalargeecosystemincludingframeworkslikeLaravelandCMSplatformslikeWordPress.Itexcelsinhandlingformsubmissions,managingusersessions,interacti 如何設(shè)置PHP時區(qū)? Jun 25, 2025 am 01:00 AM tosetTherightTimeZoneInphp,restate_default_timezone_set()functionAtthestArtofyourscriptWithavalIdidentIdentifiersuchas'america/new_york'.1.usedate_default_default_timezone_set_set() See all articles
But in ipad.php the links have to be like this :<\/p>
Home<\/a>Ipad<\/a><\/pre> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag.<\/p> <\/head>Home<\/a>Ipad<\/a><\/body><\/html><\/pre> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products\/ipad.php<\/p> 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing.<\/p> ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT);<\/pre> On production , the display should be disabled.<\/p> ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark.<\/p> After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set.<\/p> ini_set('log_errors' , '1');ini_set('error_log' , '\/path\/to\/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> Note :<\/p> 1. The path '\/path\/to\/errors.txt' should be writable by the web server for errors to be logged there.<\/p> 2. A separate error file is specified , otherwise all logs would go inside the apache\/web server error log and get mixed up with other apache errors.<\/p> 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver).<\/p> 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like \/var\/log dont have to searched.<\/p> 5. Dont set error_reporting to 0. It will not log anything then.<\/p> Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file.<\/p> Set 'display_errors=On' in php.ini on development machine<\/p> On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page.<\/p> Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work.<\/p> Set 'display_errors=Off' in php.ini on production machine<\/p> Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away.<\/p> 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results.<\/p> On a 64 bit machine you can see such output.<\/p> $ php -aInteractive shellphp > echo strtotime(\"0000-00-00 00:00:00\");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600<\/pre> But on a 32 bit machine all of them would give bool(false). Check here for more.<\/p> What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines.<\/p> 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this :<\/p> set_time_limit(30);\/\/Rest of the code<\/pre> It may not always work. Any execution that happens outside the script via system calls\/os functions like socket operations, database operations etc. will not be under control of set_time_limit.<\/p> So if a database operation takes lot of time or \"hangs\" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time.<\/p> 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it.<\/p> A better solution :<\/p> \/**\tMethod to execute a command in the terminal\tUses :\t1. system\t2. passthru\t3. exec\t4. shell_exec*\/function terminal($command){\t\/\/system\tif(function_exists('system'))\t{\t\tob_start();\t\tsystem($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/passthru\telse if(function_exists('passthru'))\t{\t\tob_start();\t\tpassthru($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/exec\telse if(function_exists('exec'))\t{\t\texec($command , $output , $return_var);\t\t$output = implode(\"\\n\" , $output);\t}\t\/\/shell_exec\telse if(function_exists('shell_exec'))\t{\t\t$output = shell_exec($command) ;\t}\telse\t{\t\t$output = 'Command execution not possible on this system';\t\t$return_var = 1;\t}\treturn array('output' => $output , 'status' => $return_var);}terminal('ls');<\/pre> The above function will execute the shell command using whichever function is available , keeping your code consistent.<\/p> 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user.<\/p> 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise.<\/p> Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind.<\/p> 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily.<\/p> Few popular libraries are :<\/p> mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference.<\/p> 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code.<\/p> Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community.<\/p> They contain user feedback, expert advice and useful code snippets. So check them out.<\/p> 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!!<\/p> 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc.<\/p> The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more<\/p> 1. Codeigniter 2. WordPress 3. Joomla CMS<\/p> 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment.<\/p> Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster.<\/p> Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free.<\/p> "} 社區(qū) 文章 合集 問答 學習 課程 編程詞典 工具庫 開發(fā)工具 網(wǎng)站源碼 PHP 庫 JS特效 網(wǎng)站素材 擴展插件 AI工具 休閑 游戲下載 游戲教程 簡體中文 簡體中文 English 繁體中文 日本語 ??? Melayu Fran?ais Deutsch Login singup 首頁 后端開發(fā) php教程 40+ Useful Php tips for beginners ? Part 1 40+ Useful Php tips for beginners ? Part 1 WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB Jun 23, 2016 pm 02:37 PM PHP學習指南 http://www.binarytides.com/category/php-2/tutorial/ In this series we are going to look into some useful tips and techniques that can be used to improve and optimise your php code. Note that these php tips are meant for beginners and not those who are already using mvc frameworks etc. The Techniques 1. Do not use relative paths , instead define a ROOT path Its quite common to see such lines : require_once('http://www.cnblogs.com/lib/some_class.php'); This approach has many drawbacks : It first searches for directories specified in the include paths of php , then looks from the current directory. So many directories are checked. When a script is included by another script in a different directory , its base directory changes to that of the including script. Another issue , is that when a script is being run from cron , it may not have its parent directory as the working directory. So its a good idea to have absolute paths : define('ROOT' , '/var/www/project/');require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code Now this is an absolute path and will always stay constant. But we can improve this further. The directory /var/www/project can change , so do we change it everytime ? No instead we make it portable using magic constants like __FILE__ . Take a closer look : //suppose your script is /var/www/project/index.php//Then __FILE__ will always have that full path.define('ROOT' , pathinfo(__FILE__, PATHINFO_DIRNAME));require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code So now even if you shift your project to a different directory , like moving it to an online server , the same code will run without any changes. 2. Dont use require , include , require_once or include_once Your script could be including various files on top , like class libraries , files for utility and helper functions etc like this : require_once('lib/Database.php');require_once('lib/Mail.php');require_once('helpers/utitlity_functions.php'); This is rather primitive. The code needs to be more flexible. Write up helper functions to include things more easily. Lets take an example : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); require_once( $path ); }load_class('Database');load_class('Mail'); See any difference ? You must. It does not need any more explanation. You can improve this further if you wish to like this : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); if(file_exists($path)) { require_once( $path ); }} There are a lot of things that can be done with this : Search multiple directories for the same class file. Change the directory containing class files easily , without breaking the code anywhere. Use similar functions for loading files that contain helper functions , html content etc. 3. Maintain debugging environment in your application During development we echo database queries , dump variables which are creating problems , and then once the problem is solved , we comment them or erase them. But its a good idea to let everything stay and help in the long run On your development machine you can do this : define('ENVIRONMENT' , 'development');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } And on the server you can do this : define('ENVIRONMENT' , 'production');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } 4. Propagate status messages via session Status messages are those messages that are generated after doing a task. <?phpif($wrong_username || $wrong_password){ $msg = 'Invalid username or password';}?><html><body><?php echo $msg; ?><form>...</form></body></html> Code like that is common. Using variables to show status messages has limitations. They cannot be send via redirects (unless you propagate them as GET variables to the next script , which is very silly). In large scripts there might be multiple messages etc. Best way is to use session to propagate them (even if on same page). For this there has to be a session_start on every page. function set_flash($msg){ $_SESSION['message'] = $msg;}function get_flash(){ $msg = $_SESSION['message']; unset($_SESSION['message']); return $msg;} and in your script : <?phpif($wrong_username || $wrong_password){ set_flash('Invalid username or password');}?><html><body>Status is : <?php echo get_flash(); ?><form>...</form></body></html> 5. Make your functions flexible function add_to_cart($item_id , $qty){ $_SESSION['cart'][$item_id] = $qty;}add_to_cart( 'IPHONE3' , 2 ); When adding a single item you use the above function. When adding multiple items , will you create another function ? NO. Just make the function flexible enough to take different kinds of parameters. Have a closer look : function add_to_cart($item_id , $qty){ if(!is_array($item_id)) { $_SESSION['cart'][$item_id] = $qty; } else { foreach($item_id as $i_id => $qty) { $_SESSION['cart'][$i_id] = $qty; } }}add_to_cart( 'IPHONE3' , 2 );add_to_cart( array('IPHONE3' => 2 , 'IPAD' => 5) ); So now the same function can accept different kinds of output. The above can be applied in lots of places to make your code more agile. 6. Omit the closing php tag if it is the last thing in a script I wonder why this tip is omitted from so many blog posts on php tips. <?phpecho "Hello";//Now dont close this tag This will save you lots of problem. Lets take an example : A class file super_class.php <?phpclass super_class{ function super_function() { //super code }}?>//super extra character after the closing tag Now index.php require_once('super_class.php');//echo an image or pdf , or set the cookies or session data And you will get Headers already send error. Why ? because the "super extra character" has been echoed , and all headers went along with that. Now you start debugging. You may have to waste many hours to find the super extra space. Hence make it a habit to omit the closing tag : <?phpclass super_class{ function super_function() { //super code }}//No closing tag Thats better. 7. Collect all output at one place , and output at one shot to the browser This is called output buffering. Lets say you have been echoing content from different functions like this : function print_header(){ echo "<div id='header'>Site Log and Login links</div>";}function print_footer(){ echo "<div id='footer'>Site was made by me</div>";}print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}print_footer(); Instead of doing like that , first collect all output in one place. You can either store it inside variables in the functions or use ob_start and ob_end_clean. So now it should look like function print_header(){ $o = "<div id='header'>Site Log and Login links</div>"; return $o;}function print_footer(){ $o = "<div id='footer'>Site was made by me</div>"; return $o;}echo print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}echo print_footer(); So why should you do output buffering : You can change the output just before sending it to browser if you need to. Think about doing some str_replaces , or may be preg_replaces or may be adding some extra html at the end like profiler/debugger output Its a bad idea to send output to browser and do php processing at the same time. Have you ever seen a website where there is a Fatal error in the sidebar or in a box in the middle of the screen. You know why that happens ? Because processing and output are being mixed. 8. Send correct mime types via header when outputting non-html content Lets echo some xml. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataecho $xml; Works fine. But it needs some improvement. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataheader("content-type: text/xml");echo $xml; Note that header line. That line tells the browser that the content is xml content. So the browser can handle it correctly. Many javascript libraries also rely on header information. Similarly for javascript , css , jpg image , png image : Javascript header("content-type: application/x-javascript");echo "var a = 10"; CSS header("content-type: text/css");echo "#div id { background:#000; }"; 9. Set the correct character encoding for a mysql connection Ever faced a problem that unicode/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation. $host = 'localhost';$username = 'root';$password = 'super_secret';//Attempt to connect to database$c = mysqli_connect($host , $username, $password); //Check connection validityif (!$c) { die ("Could not connect to the database host: <br />". mysqli_connect_error());} //Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){ die('mysqli_set_charset() failed');} Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application. Otherwise what will happen ? You will see lots of boxes and ???????? in non english text. 10. Use htmlentities with the correct characterset option Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc. $value = htmlentities($this->value , ENT_QUOTES , 'UTF-8'); Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual. 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php. Use apache mod_gzip/mod_deflate to compress content via the .htaccess file. 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php. $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= "'$image' ,";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;//Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,]; Be smart. use json_encode : $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;//Output is : var images = ["myself.png","friends.png","colleagues.png"] Isn't that neat ? 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of "debugging" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on. Make sure that your application is as intelligent as possible and reports the most important information in the shortest time. $contents = "All the content";$file_path = "/var/www/project/content.txt";file_put_contents($file_path , $contents); That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons : Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file. $contents = "All the content";$dir = '/var/www/project';$file_path = $dir . "/content.txt";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die("Directory $dir is not writable, or does not exist. Please check");} By doing this you get the accurate information that where is a file write failing and why 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are "accessible" outside. Otherwise for example the files may be created by "php" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on. // Read and write for owner, read for everybody elsechmod("/somedir/somefile", 0644);// Everything for owner, read and execute for otherschmod("/somedir/somefile", 0755); 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ //Save the things} The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this : if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ //Save the things} Now you are free from the value the submit button 16. Use static variables in function where they always have same value //Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} Instead use static variables as : //Delay for some timefunction delay(){ static $sync_delay = null; if($sync_delay == null) { $sync_delay = get_option('sync_delay'); } echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} 17. Don't use the $_SESSION variable directly Some simple examples are : $_SESSION['username'] = $username;$username = $_SESSION['username']; But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain. Hence use application specific keys with wrapper functions : define('APP_ID' , 'abc_corp_ecommerce');//Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}//Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;} 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like : function utility_a(){ //This function does a utility thing like string processing}function utility_b(){ //This function does nother utility thing like database processing}function utility_c(){ //This function is ...} And you use the function throughout your application freely. You may want to wrap them into a class as static functions : class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}//and call them as $a = Utility::utility_a();$b = Utility::utility_b(); One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else. 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++; Its absolutely a WASTE. Write if($a == true){ $a_count++;} Dont try to make your code shorter by eating up syntax. Rather make your logic shorter. Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this : foreach($arr as $c => $v){ $arr[$c] = trim($v);} But it can more cleaner with array_map : $arr = array_map('trim' , $arr); This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more. 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters. The php filter extension provides simple way to validate or check values as being a valid 'something'. 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate']; Its a good habit. 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded : $db_records_in_array_format; //This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; //2MB moresome_function($cc); //Another 2MB ? The above thing is common when importing a csv file or exporting table to a csv file Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays. Consider passing them by reference , or storing them in a class variable : $a = get_large_array();pass_to_function(&$a); by doing this the same variable (and not its copy) will be available to the function. Check documentation class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { //process $this->a }} unset them as soon as possible , so that memory is freed and rest of the script can relax. Here is a simple demonstration of how assign by reference can save memory in some cases <?phpini_set('display_errors' , true);error_reporting(E_ALL);$a = array();for($i = 0; $i < 100000 ; $i++){ $a[$i] = 'A'.$i;}echo 'Memory usage in MB : '. memory_get_usage() / 1000000 . '<br />';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() / 1000000 . '<br />';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() / 1000000 . '<br />';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() / 1000000 . '<br />'; The output on a typical php 5.4 machine is : Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more. 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this : function add_to_cart(){ $db = new Database(); $db->query("INSERT INTO cart .....");}function empty_cart(){ $db = new Database(); $db->query("DELETE FROM cart .....");} Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory. Use the singleton pattern for special cases like database connection. 26. Avoid direct SQL query , abstract it $query = "INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')";$db->query($query); //call to mysqli_query() The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like: All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries. A very simple example of an activerecord insert function can be like this : function insert_record($table_name , $data){ foreach($data as $key => $value) { //mysqli_real_escape_string $data[$key] = $db->mres($value); } $fields = implode(',' , array_keys($data)); $values = "'" . implode("','" , array_values($data)) . "'"; //Final query $query = "INSERT INTO {$table}($fields) VALUES($values)"; return $db->query($query);}//data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);//perform the INSERT queryinsert_record('users' , $data); The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse). This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise. 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again. Benefits : Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue. Storing session in database makes many other things easier like: Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example : <head> <base href="http://www.domain.com/store/"></head><body> <img src="/static/imghw/default1.png" data-src="happy.jpg" class="lazy" / alt="40+ Useful Php tips for beginners ? Part 1" ></body></html> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories. Lets take an example www.domain.com/store/home.php www.domain.com/store/products/ipad.php In home.php the following can be written : <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> But in ipad.php the links have to be like this : <a href="../home.php">Home</a><a href="ipad.php">Ipad</a> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag. <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products/ipad.php 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing. ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT); On production , the display should be disabled. ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark. After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set. ini_set('log_errors' , '1');ini_set('error_log' , '/path/to/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); Note : 1. The path '/path/to/errors.txt' should be writable by the web server for errors to be logged there. 2. A separate error file is specified , otherwise all logs would go inside the apache/web server error log and get mixed up with other apache errors. 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver). 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like /var/log dont have to searched. 5. Dont set error_reporting to 0. It will not log anything then. Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file. Set 'display_errors=On' in php.ini on development machine On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page. Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work. Set 'display_errors=Off' in php.ini on production machine Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away. 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results. On a 64 bit machine you can see such output. $ php -aInteractive shellphp > echo strtotime("0000-00-00 00:00:00");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600 But on a 32 bit machine all of them would give bool(false). Check here for more. What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines. 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this : set_time_limit(30);//Rest of the code It may not always work. Any execution that happens outside the script via system calls/os functions like socket operations, database operations etc. will not be under control of set_time_limit. So if a database operation takes lot of time or "hangs" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time. 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it. A better solution : /** Method to execute a command in the terminal Uses : 1. system 2. passthru 3. exec 4. shell_exec*/function terminal($command){ //system if(function_exists('system')) { ob_start(); system($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //passthru else if(function_exists('passthru')) { ob_start(); passthru($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //exec else if(function_exists('exec')) { exec($command , $output , $return_var); $output = implode("\n" , $output); } //shell_exec else if(function_exists('shell_exec')) { $output = shell_exec($command) ; } else { $output = 'Command execution not possible on this system'; $return_var = 1; } return array('output' => $output , 'status' => $return_var);}terminal('ls'); The above function will execute the shell command using whichever function is available , keeping your code consistent. 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user. 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise. Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind. 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily. Few popular libraries are : mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference. 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code. Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community. They contain user feedback, expert advice and useful code snippets. So check them out. 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!! 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc. The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more 1. Codeigniter 2. WordPress 3. Joomla CMS 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment. Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster. Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free. 本站聲明 本文內(nèi)容由網(wǎng)友自發(fā)貢獻,版權(quán)歸原作者所有,本站不承擔相應(yīng)法律責任。如您發(fā)現(xiàn)有涉嫌抄襲侵權(quán)的內(nèi)容,請聯(lián)系admin@php.cn 熱AI工具 Undress AI Tool 免費脫衣服圖片 Undresser.AI Undress 人工智能驅(qū)動的應(yīng)用程序,用于創(chuàng)建逼真的裸體照片 AI Clothes Remover 用于從照片中去除衣服的在線人工智能工具。 Clothoff.io AI脫衣機 Video Face Swap 使用我們完全免費的人工智能換臉工具輕松在任何視頻中換臉! 顯示更多 熱門文章 指南:恒星刀片保存文件位置/保存文件丟失/不保存 4 周前 By DDD Oguri Cap Build Guide |漂亮的德比志 2 周前 By Jack chen Agnes Tachyon Build Guide |漂亮的德比志 1 周前 By Jack chen 沙丘:覺醒 - 高級行星學家Quest演練 4 周前 By Jack chen 約會一切:德克和哈珀關(guān)系指南 4 周前 By Jack chen 顯示更多 熱工具 記事本++7.3.1 好用且免費的代碼編輯器 SublimeText3漢化版 中文版,非常好用 禪工作室 13.0.1 功能強大的PHP集成開發(fā)環(huán)境 Dreamweaver CS6 視覺化網(wǎng)頁開發(fā)工具 SublimeText3 Mac版 神級代碼編輯軟件(SublimeText3) 顯示更多 熱門話題 gmail郵箱登陸入口在哪里 8638 17 Java教程 1783 16 CakePHP 教程 1728 56 Laravel 教程 1578 28 PHP教程 1442 31 顯示更多 Related knowledge 如何在PHP中實施身份驗證和授權(quán)? Jun 20, 2025 am 01:03 AM tosecurelyhandleauthenticationandationallizationInphp,lofterTheSesteps:1.AlwaysHashPasswordSwithPassword_hash()andverifyusingspasspassword_verify(),usepreparedStatatementStopreventsqlineptions,andStoreSeruserDatain usseruserDatain $ _sessiveferterlogin.2.implementrole-2.imaccessccsccccccccccccccccccccccccc. 如何在PHP中安全地處理文件上傳? Jun 19, 2025 am 01:05 AM 要安全處理PHP中的文件上傳,核心在于驗證文件類型、重命名文件并限制權(quán)限。1.使用finfo_file()檢查真實MIME類型,僅允許特定類型如image/jpeg;2.用uniqid()生成隨機文件名,存儲至非Web根目錄;3.通過php.ini和HTML表單限制文件大小,設(shè)置目錄權(quán)限為0755;4.使用ClamAV掃描惡意軟件,增強安全性。這些步驟有效防止安全漏洞,確保文件上傳過程安全可靠。 PHP中==(松散比較)和===(嚴格的比較)之間有什么區(qū)別? Jun 19, 2025 am 01:07 AM 在PHP中,==與===的主要區(qū)別在于類型檢查的嚴格程度。==在比較前會進行類型轉(zhuǎn)換,例如5=="5"返回true,而===要求值和類型都相同才會返回true,例如5==="5"返回false。使用場景上,===更安全應(yīng)優(yōu)先使用,==僅在需要類型轉(zhuǎn)換時使用。 如何在PHP( - , *, /,%)中執(zhí)行算術(shù)操作? Jun 19, 2025 pm 05:13 PM PHP中使用基本數(shù)學運算的方法如下:1.加法用 號,支持整數(shù)和浮點數(shù),也可用于變量,字符串數(shù)字會自動轉(zhuǎn)換但不推薦依賴;2.減法用-號,變量同理,類型轉(zhuǎn)換同樣適用;3.乘法用*號,適用于數(shù)字及類似字符串;4.除法用/號,需避免除以零,并注意結(jié)果可能是浮點數(shù);5.取模用%號,可用于判斷奇偶數(shù),處理負數(shù)時余數(shù)符號與被除數(shù)一致。正確使用這些運算符的關(guān)鍵在于確保數(shù)據(jù)類型清晰并處理好邊界情況。 如何與PHP的NOSQL數(shù)據(jù)庫(例如MongoDB,Redis)進行交互? Jun 19, 2025 am 01:07 AM 是的,PHP可以通過特定擴展或庫與MongoDB和Redis等NoSQL數(shù)據(jù)庫交互。首先,使用MongoDBPHP驅(qū)動(通過PECL或Composer安裝)創(chuàng)建客戶端實例并操作數(shù)據(jù)庫及集合,支持插入、查詢、聚合等操作;其次,使用Predis庫或phpredis擴展連接Redis,執(zhí)行鍵值設(shè)置與獲取,推薦phpredis用于高性能場景,Predis則便于快速部署;兩者均適用于生產(chǎn)環(huán)境且文檔完善。 我如何了解最新的PHP開發(fā)和最佳實踐? Jun 23, 2025 am 12:56 AM TostaycurrentwithPHPdevelopmentsandbestpractices,followkeynewssourceslikePHP.netandPHPWeekly,engagewithcommunitiesonforumsandconferences,keeptoolingupdatedandgraduallyadoptnewfeatures,andreadorcontributetoopensourceprojects.First,followreliablesource 什么是PHP,為什么它用于Web開發(fā)? Jun 23, 2025 am 12:55 AM PHPbecamepopularforwebdevelopmentduetoitseaseoflearning,seamlessintegrationwithHTML,widespreadhostingsupport,andalargeecosystemincludingframeworkslikeLaravelandCMSplatformslikeWordPress.Itexcelsinhandlingformsubmissions,managingusersessions,interacti 如何設(shè)置PHP時區(qū)? Jun 25, 2025 am 01:00 AM tosetTherightTimeZoneInphp,restate_default_timezone_set()functionAtthestArtofyourscriptWithavalIdidentIdentifiersuchas'america/new_york'.1.usedate_default_default_timezone_set_set() See all articles
This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag.<\/p>
<\/head>Home<\/a>Ipad<\/a><\/body><\/html><\/pre> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products\/ipad.php<\/p> 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing.<\/p> ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT);<\/pre> On production , the display should be disabled.<\/p> ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark.<\/p> After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set.<\/p> ini_set('log_errors' , '1');ini_set('error_log' , '\/path\/to\/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> Note :<\/p> 1. The path '\/path\/to\/errors.txt' should be writable by the web server for errors to be logged there.<\/p> 2. A separate error file is specified , otherwise all logs would go inside the apache\/web server error log and get mixed up with other apache errors.<\/p> 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver).<\/p> 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like \/var\/log dont have to searched.<\/p> 5. Dont set error_reporting to 0. It will not log anything then.<\/p> Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file.<\/p> Set 'display_errors=On' in php.ini on development machine<\/p> On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page.<\/p> Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work.<\/p> Set 'display_errors=Off' in php.ini on production machine<\/p> Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away.<\/p> 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results.<\/p> On a 64 bit machine you can see such output.<\/p> $ php -aInteractive shellphp > echo strtotime(\"0000-00-00 00:00:00\");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600<\/pre> But on a 32 bit machine all of them would give bool(false). Check here for more.<\/p> What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines.<\/p> 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this :<\/p> set_time_limit(30);\/\/Rest of the code<\/pre> It may not always work. Any execution that happens outside the script via system calls\/os functions like socket operations, database operations etc. will not be under control of set_time_limit.<\/p> So if a database operation takes lot of time or \"hangs\" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time.<\/p> 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it.<\/p> A better solution :<\/p> \/**\tMethod to execute a command in the terminal\tUses :\t1. system\t2. passthru\t3. exec\t4. shell_exec*\/function terminal($command){\t\/\/system\tif(function_exists('system'))\t{\t\tob_start();\t\tsystem($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/passthru\telse if(function_exists('passthru'))\t{\t\tob_start();\t\tpassthru($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/exec\telse if(function_exists('exec'))\t{\t\texec($command , $output , $return_var);\t\t$output = implode(\"\\n\" , $output);\t}\t\/\/shell_exec\telse if(function_exists('shell_exec'))\t{\t\t$output = shell_exec($command) ;\t}\telse\t{\t\t$output = 'Command execution not possible on this system';\t\t$return_var = 1;\t}\treturn array('output' => $output , 'status' => $return_var);}terminal('ls');<\/pre> The above function will execute the shell command using whichever function is available , keeping your code consistent.<\/p> 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user.<\/p> 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise.<\/p> Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind.<\/p> 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily.<\/p> Few popular libraries are :<\/p> mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference.<\/p> 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code.<\/p> Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community.<\/p> They contain user feedback, expert advice and useful code snippets. So check them out.<\/p> 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!!<\/p> 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc.<\/p> The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more<\/p> 1. Codeigniter 2. WordPress 3. Joomla CMS<\/p> 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment.<\/p> Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster.<\/p> Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free.<\/p> "} 社區(qū) 文章 合集 問答 學習 課程 編程詞典 工具庫 開發(fā)工具 網(wǎng)站源碼 PHP 庫 JS特效 網(wǎng)站素材 擴展插件 AI工具 休閑 游戲下載 游戲教程 簡體中文 簡體中文 English 繁體中文 日本語 ??? Melayu Fran?ais Deutsch Login singup 首頁 后端開發(fā) php教程 40+ Useful Php tips for beginners ? Part 1 40+ Useful Php tips for beginners ? Part 1 WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB Jun 23, 2016 pm 02:37 PM PHP學習指南 http://www.binarytides.com/category/php-2/tutorial/ In this series we are going to look into some useful tips and techniques that can be used to improve and optimise your php code. Note that these php tips are meant for beginners and not those who are already using mvc frameworks etc. The Techniques 1. Do not use relative paths , instead define a ROOT path Its quite common to see such lines : require_once('http://www.cnblogs.com/lib/some_class.php'); This approach has many drawbacks : It first searches for directories specified in the include paths of php , then looks from the current directory. So many directories are checked. When a script is included by another script in a different directory , its base directory changes to that of the including script. Another issue , is that when a script is being run from cron , it may not have its parent directory as the working directory. So its a good idea to have absolute paths : define('ROOT' , '/var/www/project/');require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code Now this is an absolute path and will always stay constant. But we can improve this further. The directory /var/www/project can change , so do we change it everytime ? No instead we make it portable using magic constants like __FILE__ . Take a closer look : //suppose your script is /var/www/project/index.php//Then __FILE__ will always have that full path.define('ROOT' , pathinfo(__FILE__, PATHINFO_DIRNAME));require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code So now even if you shift your project to a different directory , like moving it to an online server , the same code will run without any changes. 2. Dont use require , include , require_once or include_once Your script could be including various files on top , like class libraries , files for utility and helper functions etc like this : require_once('lib/Database.php');require_once('lib/Mail.php');require_once('helpers/utitlity_functions.php'); This is rather primitive. The code needs to be more flexible. Write up helper functions to include things more easily. Lets take an example : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); require_once( $path ); }load_class('Database');load_class('Mail'); See any difference ? You must. It does not need any more explanation. You can improve this further if you wish to like this : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); if(file_exists($path)) { require_once( $path ); }} There are a lot of things that can be done with this : Search multiple directories for the same class file. Change the directory containing class files easily , without breaking the code anywhere. Use similar functions for loading files that contain helper functions , html content etc. 3. Maintain debugging environment in your application During development we echo database queries , dump variables which are creating problems , and then once the problem is solved , we comment them or erase them. But its a good idea to let everything stay and help in the long run On your development machine you can do this : define('ENVIRONMENT' , 'development');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } And on the server you can do this : define('ENVIRONMENT' , 'production');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } 4. Propagate status messages via session Status messages are those messages that are generated after doing a task. <?phpif($wrong_username || $wrong_password){ $msg = 'Invalid username or password';}?><html><body><?php echo $msg; ?><form>...</form></body></html> Code like that is common. Using variables to show status messages has limitations. They cannot be send via redirects (unless you propagate them as GET variables to the next script , which is very silly). In large scripts there might be multiple messages etc. Best way is to use session to propagate them (even if on same page). For this there has to be a session_start on every page. function set_flash($msg){ $_SESSION['message'] = $msg;}function get_flash(){ $msg = $_SESSION['message']; unset($_SESSION['message']); return $msg;} and in your script : <?phpif($wrong_username || $wrong_password){ set_flash('Invalid username or password');}?><html><body>Status is : <?php echo get_flash(); ?><form>...</form></body></html> 5. Make your functions flexible function add_to_cart($item_id , $qty){ $_SESSION['cart'][$item_id] = $qty;}add_to_cart( 'IPHONE3' , 2 ); When adding a single item you use the above function. When adding multiple items , will you create another function ? NO. Just make the function flexible enough to take different kinds of parameters. Have a closer look : function add_to_cart($item_id , $qty){ if(!is_array($item_id)) { $_SESSION['cart'][$item_id] = $qty; } else { foreach($item_id as $i_id => $qty) { $_SESSION['cart'][$i_id] = $qty; } }}add_to_cart( 'IPHONE3' , 2 );add_to_cart( array('IPHONE3' => 2 , 'IPAD' => 5) ); So now the same function can accept different kinds of output. The above can be applied in lots of places to make your code more agile. 6. Omit the closing php tag if it is the last thing in a script I wonder why this tip is omitted from so many blog posts on php tips. <?phpecho "Hello";//Now dont close this tag This will save you lots of problem. Lets take an example : A class file super_class.php <?phpclass super_class{ function super_function() { //super code }}?>//super extra character after the closing tag Now index.php require_once('super_class.php');//echo an image or pdf , or set the cookies or session data And you will get Headers already send error. Why ? because the "super extra character" has been echoed , and all headers went along with that. Now you start debugging. You may have to waste many hours to find the super extra space. Hence make it a habit to omit the closing tag : <?phpclass super_class{ function super_function() { //super code }}//No closing tag Thats better. 7. Collect all output at one place , and output at one shot to the browser This is called output buffering. Lets say you have been echoing content from different functions like this : function print_header(){ echo "<div id='header'>Site Log and Login links</div>";}function print_footer(){ echo "<div id='footer'>Site was made by me</div>";}print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}print_footer(); Instead of doing like that , first collect all output in one place. You can either store it inside variables in the functions or use ob_start and ob_end_clean. So now it should look like function print_header(){ $o = "<div id='header'>Site Log and Login links</div>"; return $o;}function print_footer(){ $o = "<div id='footer'>Site was made by me</div>"; return $o;}echo print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}echo print_footer(); So why should you do output buffering : You can change the output just before sending it to browser if you need to. Think about doing some str_replaces , or may be preg_replaces or may be adding some extra html at the end like profiler/debugger output Its a bad idea to send output to browser and do php processing at the same time. Have you ever seen a website where there is a Fatal error in the sidebar or in a box in the middle of the screen. You know why that happens ? Because processing and output are being mixed. 8. Send correct mime types via header when outputting non-html content Lets echo some xml. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataecho $xml; Works fine. But it needs some improvement. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataheader("content-type: text/xml");echo $xml; Note that header line. That line tells the browser that the content is xml content. So the browser can handle it correctly. Many javascript libraries also rely on header information. Similarly for javascript , css , jpg image , png image : Javascript header("content-type: application/x-javascript");echo "var a = 10"; CSS header("content-type: text/css");echo "#div id { background:#000; }"; 9. Set the correct character encoding for a mysql connection Ever faced a problem that unicode/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation. $host = 'localhost';$username = 'root';$password = 'super_secret';//Attempt to connect to database$c = mysqli_connect($host , $username, $password); //Check connection validityif (!$c) { die ("Could not connect to the database host: <br />". mysqli_connect_error());} //Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){ die('mysqli_set_charset() failed');} Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application. Otherwise what will happen ? You will see lots of boxes and ???????? in non english text. 10. Use htmlentities with the correct characterset option Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc. $value = htmlentities($this->value , ENT_QUOTES , 'UTF-8'); Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual. 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php. Use apache mod_gzip/mod_deflate to compress content via the .htaccess file. 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php. $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= "'$image' ,";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;//Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,]; Be smart. use json_encode : $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;//Output is : var images = ["myself.png","friends.png","colleagues.png"] Isn't that neat ? 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of "debugging" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on. Make sure that your application is as intelligent as possible and reports the most important information in the shortest time. $contents = "All the content";$file_path = "/var/www/project/content.txt";file_put_contents($file_path , $contents); That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons : Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file. $contents = "All the content";$dir = '/var/www/project';$file_path = $dir . "/content.txt";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die("Directory $dir is not writable, or does not exist. Please check");} By doing this you get the accurate information that where is a file write failing and why 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are "accessible" outside. Otherwise for example the files may be created by "php" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on. // Read and write for owner, read for everybody elsechmod("/somedir/somefile", 0644);// Everything for owner, read and execute for otherschmod("/somedir/somefile", 0755); 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ //Save the things} The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this : if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ //Save the things} Now you are free from the value the submit button 16. Use static variables in function where they always have same value //Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} Instead use static variables as : //Delay for some timefunction delay(){ static $sync_delay = null; if($sync_delay == null) { $sync_delay = get_option('sync_delay'); } echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} 17. Don't use the $_SESSION variable directly Some simple examples are : $_SESSION['username'] = $username;$username = $_SESSION['username']; But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain. Hence use application specific keys with wrapper functions : define('APP_ID' , 'abc_corp_ecommerce');//Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}//Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;} 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like : function utility_a(){ //This function does a utility thing like string processing}function utility_b(){ //This function does nother utility thing like database processing}function utility_c(){ //This function is ...} And you use the function throughout your application freely. You may want to wrap them into a class as static functions : class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}//and call them as $a = Utility::utility_a();$b = Utility::utility_b(); One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else. 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++; Its absolutely a WASTE. Write if($a == true){ $a_count++;} Dont try to make your code shorter by eating up syntax. Rather make your logic shorter. Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this : foreach($arr as $c => $v){ $arr[$c] = trim($v);} But it can more cleaner with array_map : $arr = array_map('trim' , $arr); This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more. 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters. The php filter extension provides simple way to validate or check values as being a valid 'something'. 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate']; Its a good habit. 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded : $db_records_in_array_format; //This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; //2MB moresome_function($cc); //Another 2MB ? The above thing is common when importing a csv file or exporting table to a csv file Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays. Consider passing them by reference , or storing them in a class variable : $a = get_large_array();pass_to_function(&$a); by doing this the same variable (and not its copy) will be available to the function. Check documentation class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { //process $this->a }} unset them as soon as possible , so that memory is freed and rest of the script can relax. Here is a simple demonstration of how assign by reference can save memory in some cases <?phpini_set('display_errors' , true);error_reporting(E_ALL);$a = array();for($i = 0; $i < 100000 ; $i++){ $a[$i] = 'A'.$i;}echo 'Memory usage in MB : '. memory_get_usage() / 1000000 . '<br />';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() / 1000000 . '<br />';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() / 1000000 . '<br />';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() / 1000000 . '<br />'; The output on a typical php 5.4 machine is : Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more. 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this : function add_to_cart(){ $db = new Database(); $db->query("INSERT INTO cart .....");}function empty_cart(){ $db = new Database(); $db->query("DELETE FROM cart .....");} Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory. Use the singleton pattern for special cases like database connection. 26. Avoid direct SQL query , abstract it $query = "INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')";$db->query($query); //call to mysqli_query() The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like: All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries. A very simple example of an activerecord insert function can be like this : function insert_record($table_name , $data){ foreach($data as $key => $value) { //mysqli_real_escape_string $data[$key] = $db->mres($value); } $fields = implode(',' , array_keys($data)); $values = "'" . implode("','" , array_values($data)) . "'"; //Final query $query = "INSERT INTO {$table}($fields) VALUES($values)"; return $db->query($query);}//data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);//perform the INSERT queryinsert_record('users' , $data); The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse). This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise. 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again. Benefits : Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue. Storing session in database makes many other things easier like: Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example : <head> <base href="http://www.domain.com/store/"></head><body> <img src="/static/imghw/default1.png" data-src="happy.jpg" class="lazy" / alt="40+ Useful Php tips for beginners ? Part 1" ></body></html> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories. Lets take an example www.domain.com/store/home.php www.domain.com/store/products/ipad.php In home.php the following can be written : <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> But in ipad.php the links have to be like this : <a href="../home.php">Home</a><a href="ipad.php">Ipad</a> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag. <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products/ipad.php 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing. ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT); On production , the display should be disabled. ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark. After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set. ini_set('log_errors' , '1');ini_set('error_log' , '/path/to/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); Note : 1. The path '/path/to/errors.txt' should be writable by the web server for errors to be logged there. 2. A separate error file is specified , otherwise all logs would go inside the apache/web server error log and get mixed up with other apache errors. 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver). 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like /var/log dont have to searched. 5. Dont set error_reporting to 0. It will not log anything then. Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file. Set 'display_errors=On' in php.ini on development machine On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page. Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work. Set 'display_errors=Off' in php.ini on production machine Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away. 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results. On a 64 bit machine you can see such output. $ php -aInteractive shellphp > echo strtotime("0000-00-00 00:00:00");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600 But on a 32 bit machine all of them would give bool(false). Check here for more. What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines. 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this : set_time_limit(30);//Rest of the code It may not always work. Any execution that happens outside the script via system calls/os functions like socket operations, database operations etc. will not be under control of set_time_limit. So if a database operation takes lot of time or "hangs" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time. 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it. A better solution : /** Method to execute a command in the terminal Uses : 1. system 2. passthru 3. exec 4. shell_exec*/function terminal($command){ //system if(function_exists('system')) { ob_start(); system($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //passthru else if(function_exists('passthru')) { ob_start(); passthru($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //exec else if(function_exists('exec')) { exec($command , $output , $return_var); $output = implode("\n" , $output); } //shell_exec else if(function_exists('shell_exec')) { $output = shell_exec($command) ; } else { $output = 'Command execution not possible on this system'; $return_var = 1; } return array('output' => $output , 'status' => $return_var);}terminal('ls'); The above function will execute the shell command using whichever function is available , keeping your code consistent. 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user. 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise. Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind. 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily. Few popular libraries are : mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference. 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code. Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community. They contain user feedback, expert advice and useful code snippets. So check them out. 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!! 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc. The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more 1. Codeigniter 2. WordPress 3. Joomla CMS 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment. Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster. Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free. 本站聲明 本文內(nèi)容由網(wǎng)友自發(fā)貢獻,版權(quán)歸原作者所有,本站不承擔相應(yīng)法律責任。如您發(fā)現(xiàn)有涉嫌抄襲侵權(quán)的內(nèi)容,請聯(lián)系admin@php.cn 熱AI工具 Undress AI Tool 免費脫衣服圖片 Undresser.AI Undress 人工智能驅(qū)動的應(yīng)用程序,用于創(chuàng)建逼真的裸體照片 AI Clothes Remover 用于從照片中去除衣服的在線人工智能工具。 Clothoff.io AI脫衣機 Video Face Swap 使用我們完全免費的人工智能換臉工具輕松在任何視頻中換臉! 顯示更多 熱門文章 指南:恒星刀片保存文件位置/保存文件丟失/不保存 4 周前 By DDD Oguri Cap Build Guide |漂亮的德比志 2 周前 By Jack chen Agnes Tachyon Build Guide |漂亮的德比志 1 周前 By Jack chen 沙丘:覺醒 - 高級行星學家Quest演練 4 周前 By Jack chen 約會一切:德克和哈珀關(guān)系指南 4 周前 By Jack chen 顯示更多 熱工具 記事本++7.3.1 好用且免費的代碼編輯器 SublimeText3漢化版 中文版,非常好用 禪工作室 13.0.1 功能強大的PHP集成開發(fā)環(huán)境 Dreamweaver CS6 視覺化網(wǎng)頁開發(fā)工具 SublimeText3 Mac版 神級代碼編輯軟件(SublimeText3) 顯示更多 熱門話題 gmail郵箱登陸入口在哪里 8638 17 Java教程 1783 16 CakePHP 教程 1728 56 Laravel 教程 1578 28 PHP教程 1442 31 顯示更多 Related knowledge 如何在PHP中實施身份驗證和授權(quán)? Jun 20, 2025 am 01:03 AM tosecurelyhandleauthenticationandationallizationInphp,lofterTheSesteps:1.AlwaysHashPasswordSwithPassword_hash()andverifyusingspasspassword_verify(),usepreparedStatatementStopreventsqlineptions,andStoreSeruserDatain usseruserDatain $ _sessiveferterlogin.2.implementrole-2.imaccessccsccccccccccccccccccccccccc. 如何在PHP中安全地處理文件上傳? Jun 19, 2025 am 01:05 AM 要安全處理PHP中的文件上傳,核心在于驗證文件類型、重命名文件并限制權(quán)限。1.使用finfo_file()檢查真實MIME類型,僅允許特定類型如image/jpeg;2.用uniqid()生成隨機文件名,存儲至非Web根目錄;3.通過php.ini和HTML表單限制文件大小,設(shè)置目錄權(quán)限為0755;4.使用ClamAV掃描惡意軟件,增強安全性。這些步驟有效防止安全漏洞,確保文件上傳過程安全可靠。 PHP中==(松散比較)和===(嚴格的比較)之間有什么區(qū)別? Jun 19, 2025 am 01:07 AM 在PHP中,==與===的主要區(qū)別在于類型檢查的嚴格程度。==在比較前會進行類型轉(zhuǎn)換,例如5=="5"返回true,而===要求值和類型都相同才會返回true,例如5==="5"返回false。使用場景上,===更安全應(yīng)優(yōu)先使用,==僅在需要類型轉(zhuǎn)換時使用。 如何在PHP( - , *, /,%)中執(zhí)行算術(shù)操作? Jun 19, 2025 pm 05:13 PM PHP中使用基本數(shù)學運算的方法如下:1.加法用 號,支持整數(shù)和浮點數(shù),也可用于變量,字符串數(shù)字會自動轉(zhuǎn)換但不推薦依賴;2.減法用-號,變量同理,類型轉(zhuǎn)換同樣適用;3.乘法用*號,適用于數(shù)字及類似字符串;4.除法用/號,需避免除以零,并注意結(jié)果可能是浮點數(shù);5.取模用%號,可用于判斷奇偶數(shù),處理負數(shù)時余數(shù)符號與被除數(shù)一致。正確使用這些運算符的關(guān)鍵在于確保數(shù)據(jù)類型清晰并處理好邊界情況。 如何與PHP的NOSQL數(shù)據(jù)庫(例如MongoDB,Redis)進行交互? Jun 19, 2025 am 01:07 AM 是的,PHP可以通過特定擴展或庫與MongoDB和Redis等NoSQL數(shù)據(jù)庫交互。首先,使用MongoDBPHP驅(qū)動(通過PECL或Composer安裝)創(chuàng)建客戶端實例并操作數(shù)據(jù)庫及集合,支持插入、查詢、聚合等操作;其次,使用Predis庫或phpredis擴展連接Redis,執(zhí)行鍵值設(shè)置與獲取,推薦phpredis用于高性能場景,Predis則便于快速部署;兩者均適用于生產(chǎn)環(huán)境且文檔完善。 我如何了解最新的PHP開發(fā)和最佳實踐? Jun 23, 2025 am 12:56 AM TostaycurrentwithPHPdevelopmentsandbestpractices,followkeynewssourceslikePHP.netandPHPWeekly,engagewithcommunitiesonforumsandconferences,keeptoolingupdatedandgraduallyadoptnewfeatures,andreadorcontributetoopensourceprojects.First,followreliablesource 什么是PHP,為什么它用于Web開發(fā)? Jun 23, 2025 am 12:55 AM PHPbecamepopularforwebdevelopmentduetoitseaseoflearning,seamlessintegrationwithHTML,widespreadhostingsupport,andalargeecosystemincludingframeworkslikeLaravelandCMSplatformslikeWordPress.Itexcelsinhandlingformsubmissions,managingusersessions,interacti 如何設(shè)置PHP時區(qū)? Jun 25, 2025 am 01:00 AM tosetTherightTimeZoneInphp,restate_default_timezone_set()functionAtthestArtofyourscriptWithavalIdidentIdentifiersuchas'america/new_york'.1.usedate_default_default_timezone_set_set() See all articles
Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products\/ipad.php<\/p> 31. Manage error reporting
error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing.<\/p>
ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT);<\/pre> On production , the display should be disabled.<\/p> ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark.<\/p> After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set.<\/p> ini_set('log_errors' , '1');ini_set('error_log' , '\/path\/to\/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> Note :<\/p> 1. The path '\/path\/to\/errors.txt' should be writable by the web server for errors to be logged there.<\/p> 2. A separate error file is specified , otherwise all logs would go inside the apache\/web server error log and get mixed up with other apache errors.<\/p> 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver).<\/p> 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like \/var\/log dont have to searched.<\/p> 5. Dont set error_reporting to 0. It will not log anything then.<\/p> Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file.<\/p> Set 'display_errors=On' in php.ini on development machine<\/p> On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page.<\/p> Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work.<\/p> Set 'display_errors=Off' in php.ini on production machine<\/p> Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away.<\/p> 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results.<\/p> On a 64 bit machine you can see such output.<\/p> $ php -aInteractive shellphp > echo strtotime(\"0000-00-00 00:00:00\");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600<\/pre> But on a 32 bit machine all of them would give bool(false). Check here for more.<\/p> What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines.<\/p> 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this :<\/p> set_time_limit(30);\/\/Rest of the code<\/pre> It may not always work. Any execution that happens outside the script via system calls\/os functions like socket operations, database operations etc. will not be under control of set_time_limit.<\/p> So if a database operation takes lot of time or \"hangs\" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time.<\/p> 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it.<\/p> A better solution :<\/p> \/**\tMethod to execute a command in the terminal\tUses :\t1. system\t2. passthru\t3. exec\t4. shell_exec*\/function terminal($command){\t\/\/system\tif(function_exists('system'))\t{\t\tob_start();\t\tsystem($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/passthru\telse if(function_exists('passthru'))\t{\t\tob_start();\t\tpassthru($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/exec\telse if(function_exists('exec'))\t{\t\texec($command , $output , $return_var);\t\t$output = implode(\"\\n\" , $output);\t}\t\/\/shell_exec\telse if(function_exists('shell_exec'))\t{\t\t$output = shell_exec($command) ;\t}\telse\t{\t\t$output = 'Command execution not possible on this system';\t\t$return_var = 1;\t}\treturn array('output' => $output , 'status' => $return_var);}terminal('ls');<\/pre> The above function will execute the shell command using whichever function is available , keeping your code consistent.<\/p> 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user.<\/p> 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise.<\/p> Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind.<\/p> 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily.<\/p> Few popular libraries are :<\/p> mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference.<\/p> 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code.<\/p> Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community.<\/p> They contain user feedback, expert advice and useful code snippets. So check them out.<\/p> 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!!<\/p> 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc.<\/p> The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more<\/p> 1. Codeigniter 2. WordPress 3. Joomla CMS<\/p> 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment.<\/p> Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster.<\/p> Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free.<\/p> "} 社區(qū) 文章 合集 問答 學習 課程 編程詞典 工具庫 開發(fā)工具 網(wǎng)站源碼 PHP 庫 JS特效 網(wǎng)站素材 擴展插件 AI工具 休閑 游戲下載 游戲教程 簡體中文 簡體中文 English 繁體中文 日本語 ??? Melayu Fran?ais Deutsch Login singup 首頁 后端開發(fā) php教程 40+ Useful Php tips for beginners ? Part 1 40+ Useful Php tips for beginners ? Part 1 WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB Jun 23, 2016 pm 02:37 PM PHP學習指南 http://www.binarytides.com/category/php-2/tutorial/ In this series we are going to look into some useful tips and techniques that can be used to improve and optimise your php code. Note that these php tips are meant for beginners and not those who are already using mvc frameworks etc. The Techniques 1. Do not use relative paths , instead define a ROOT path Its quite common to see such lines : require_once('http://www.cnblogs.com/lib/some_class.php'); This approach has many drawbacks : It first searches for directories specified in the include paths of php , then looks from the current directory. So many directories are checked. When a script is included by another script in a different directory , its base directory changes to that of the including script. Another issue , is that when a script is being run from cron , it may not have its parent directory as the working directory. So its a good idea to have absolute paths : define('ROOT' , '/var/www/project/');require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code Now this is an absolute path and will always stay constant. But we can improve this further. The directory /var/www/project can change , so do we change it everytime ? No instead we make it portable using magic constants like __FILE__ . Take a closer look : //suppose your script is /var/www/project/index.php//Then __FILE__ will always have that full path.define('ROOT' , pathinfo(__FILE__, PATHINFO_DIRNAME));require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code So now even if you shift your project to a different directory , like moving it to an online server , the same code will run without any changes. 2. Dont use require , include , require_once or include_once Your script could be including various files on top , like class libraries , files for utility and helper functions etc like this : require_once('lib/Database.php');require_once('lib/Mail.php');require_once('helpers/utitlity_functions.php'); This is rather primitive. The code needs to be more flexible. Write up helper functions to include things more easily. Lets take an example : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); require_once( $path ); }load_class('Database');load_class('Mail'); See any difference ? You must. It does not need any more explanation. You can improve this further if you wish to like this : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); if(file_exists($path)) { require_once( $path ); }} There are a lot of things that can be done with this : Search multiple directories for the same class file. Change the directory containing class files easily , without breaking the code anywhere. Use similar functions for loading files that contain helper functions , html content etc. 3. Maintain debugging environment in your application During development we echo database queries , dump variables which are creating problems , and then once the problem is solved , we comment them or erase them. But its a good idea to let everything stay and help in the long run On your development machine you can do this : define('ENVIRONMENT' , 'development');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } And on the server you can do this : define('ENVIRONMENT' , 'production');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } 4. Propagate status messages via session Status messages are those messages that are generated after doing a task. <?phpif($wrong_username || $wrong_password){ $msg = 'Invalid username or password';}?><html><body><?php echo $msg; ?><form>...</form></body></html> Code like that is common. Using variables to show status messages has limitations. They cannot be send via redirects (unless you propagate them as GET variables to the next script , which is very silly). In large scripts there might be multiple messages etc. Best way is to use session to propagate them (even if on same page). For this there has to be a session_start on every page. function set_flash($msg){ $_SESSION['message'] = $msg;}function get_flash(){ $msg = $_SESSION['message']; unset($_SESSION['message']); return $msg;} and in your script : <?phpif($wrong_username || $wrong_password){ set_flash('Invalid username or password');}?><html><body>Status is : <?php echo get_flash(); ?><form>...</form></body></html> 5. Make your functions flexible function add_to_cart($item_id , $qty){ $_SESSION['cart'][$item_id] = $qty;}add_to_cart( 'IPHONE3' , 2 ); When adding a single item you use the above function. When adding multiple items , will you create another function ? NO. Just make the function flexible enough to take different kinds of parameters. Have a closer look : function add_to_cart($item_id , $qty){ if(!is_array($item_id)) { $_SESSION['cart'][$item_id] = $qty; } else { foreach($item_id as $i_id => $qty) { $_SESSION['cart'][$i_id] = $qty; } }}add_to_cart( 'IPHONE3' , 2 );add_to_cart( array('IPHONE3' => 2 , 'IPAD' => 5) ); So now the same function can accept different kinds of output. The above can be applied in lots of places to make your code more agile. 6. Omit the closing php tag if it is the last thing in a script I wonder why this tip is omitted from so many blog posts on php tips. <?phpecho "Hello";//Now dont close this tag This will save you lots of problem. Lets take an example : A class file super_class.php <?phpclass super_class{ function super_function() { //super code }}?>//super extra character after the closing tag Now index.php require_once('super_class.php');//echo an image or pdf , or set the cookies or session data And you will get Headers already send error. Why ? because the "super extra character" has been echoed , and all headers went along with that. Now you start debugging. You may have to waste many hours to find the super extra space. Hence make it a habit to omit the closing tag : <?phpclass super_class{ function super_function() { //super code }}//No closing tag Thats better. 7. Collect all output at one place , and output at one shot to the browser This is called output buffering. Lets say you have been echoing content from different functions like this : function print_header(){ echo "<div id='header'>Site Log and Login links</div>";}function print_footer(){ echo "<div id='footer'>Site was made by me</div>";}print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}print_footer(); Instead of doing like that , first collect all output in one place. You can either store it inside variables in the functions or use ob_start and ob_end_clean. So now it should look like function print_header(){ $o = "<div id='header'>Site Log and Login links</div>"; return $o;}function print_footer(){ $o = "<div id='footer'>Site was made by me</div>"; return $o;}echo print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}echo print_footer(); So why should you do output buffering : You can change the output just before sending it to browser if you need to. Think about doing some str_replaces , or may be preg_replaces or may be adding some extra html at the end like profiler/debugger output Its a bad idea to send output to browser and do php processing at the same time. Have you ever seen a website where there is a Fatal error in the sidebar or in a box in the middle of the screen. You know why that happens ? Because processing and output are being mixed. 8. Send correct mime types via header when outputting non-html content Lets echo some xml. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataecho $xml; Works fine. But it needs some improvement. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataheader("content-type: text/xml");echo $xml; Note that header line. That line tells the browser that the content is xml content. So the browser can handle it correctly. Many javascript libraries also rely on header information. Similarly for javascript , css , jpg image , png image : Javascript header("content-type: application/x-javascript");echo "var a = 10"; CSS header("content-type: text/css");echo "#div id { background:#000; }"; 9. Set the correct character encoding for a mysql connection Ever faced a problem that unicode/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation. $host = 'localhost';$username = 'root';$password = 'super_secret';//Attempt to connect to database$c = mysqli_connect($host , $username, $password); //Check connection validityif (!$c) { die ("Could not connect to the database host: <br />". mysqli_connect_error());} //Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){ die('mysqli_set_charset() failed');} Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application. Otherwise what will happen ? You will see lots of boxes and ???????? in non english text. 10. Use htmlentities with the correct characterset option Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc. $value = htmlentities($this->value , ENT_QUOTES , 'UTF-8'); Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual. 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php. Use apache mod_gzip/mod_deflate to compress content via the .htaccess file. 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php. $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= "'$image' ,";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;//Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,]; Be smart. use json_encode : $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;//Output is : var images = ["myself.png","friends.png","colleagues.png"] Isn't that neat ? 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of "debugging" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on. Make sure that your application is as intelligent as possible and reports the most important information in the shortest time. $contents = "All the content";$file_path = "/var/www/project/content.txt";file_put_contents($file_path , $contents); That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons : Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file. $contents = "All the content";$dir = '/var/www/project';$file_path = $dir . "/content.txt";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die("Directory $dir is not writable, or does not exist. Please check");} By doing this you get the accurate information that where is a file write failing and why 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are "accessible" outside. Otherwise for example the files may be created by "php" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on. // Read and write for owner, read for everybody elsechmod("/somedir/somefile", 0644);// Everything for owner, read and execute for otherschmod("/somedir/somefile", 0755); 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ //Save the things} The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this : if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ //Save the things} Now you are free from the value the submit button 16. Use static variables in function where they always have same value //Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} Instead use static variables as : //Delay for some timefunction delay(){ static $sync_delay = null; if($sync_delay == null) { $sync_delay = get_option('sync_delay'); } echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} 17. Don't use the $_SESSION variable directly Some simple examples are : $_SESSION['username'] = $username;$username = $_SESSION['username']; But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain. Hence use application specific keys with wrapper functions : define('APP_ID' , 'abc_corp_ecommerce');//Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}//Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;} 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like : function utility_a(){ //This function does a utility thing like string processing}function utility_b(){ //This function does nother utility thing like database processing}function utility_c(){ //This function is ...} And you use the function throughout your application freely. You may want to wrap them into a class as static functions : class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}//and call them as $a = Utility::utility_a();$b = Utility::utility_b(); One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else. 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++; Its absolutely a WASTE. Write if($a == true){ $a_count++;} Dont try to make your code shorter by eating up syntax. Rather make your logic shorter. Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this : foreach($arr as $c => $v){ $arr[$c] = trim($v);} But it can more cleaner with array_map : $arr = array_map('trim' , $arr); This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more. 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters. The php filter extension provides simple way to validate or check values as being a valid 'something'. 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate']; Its a good habit. 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded : $db_records_in_array_format; //This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; //2MB moresome_function($cc); //Another 2MB ? The above thing is common when importing a csv file or exporting table to a csv file Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays. Consider passing them by reference , or storing them in a class variable : $a = get_large_array();pass_to_function(&$a); by doing this the same variable (and not its copy) will be available to the function. Check documentation class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { //process $this->a }} unset them as soon as possible , so that memory is freed and rest of the script can relax. Here is a simple demonstration of how assign by reference can save memory in some cases <?phpini_set('display_errors' , true);error_reporting(E_ALL);$a = array();for($i = 0; $i < 100000 ; $i++){ $a[$i] = 'A'.$i;}echo 'Memory usage in MB : '. memory_get_usage() / 1000000 . '<br />';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() / 1000000 . '<br />';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() / 1000000 . '<br />';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() / 1000000 . '<br />'; The output on a typical php 5.4 machine is : Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more. 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this : function add_to_cart(){ $db = new Database(); $db->query("INSERT INTO cart .....");}function empty_cart(){ $db = new Database(); $db->query("DELETE FROM cart .....");} Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory. Use the singleton pattern for special cases like database connection. 26. Avoid direct SQL query , abstract it $query = "INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')";$db->query($query); //call to mysqli_query() The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like: All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries. A very simple example of an activerecord insert function can be like this : function insert_record($table_name , $data){ foreach($data as $key => $value) { //mysqli_real_escape_string $data[$key] = $db->mres($value); } $fields = implode(',' , array_keys($data)); $values = "'" . implode("','" , array_values($data)) . "'"; //Final query $query = "INSERT INTO {$table}($fields) VALUES($values)"; return $db->query($query);}//data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);//perform the INSERT queryinsert_record('users' , $data); The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse). This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise. 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again. Benefits : Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue. Storing session in database makes many other things easier like: Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example : <head> <base href="http://www.domain.com/store/"></head><body> <img src="/static/imghw/default1.png" data-src="happy.jpg" class="lazy" / alt="40+ Useful Php tips for beginners ? Part 1" ></body></html> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories. Lets take an example www.domain.com/store/home.php www.domain.com/store/products/ipad.php In home.php the following can be written : <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> But in ipad.php the links have to be like this : <a href="../home.php">Home</a><a href="ipad.php">Ipad</a> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag. <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products/ipad.php 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing. ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT); On production , the display should be disabled. ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark. After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set. ini_set('log_errors' , '1');ini_set('error_log' , '/path/to/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); Note : 1. The path '/path/to/errors.txt' should be writable by the web server for errors to be logged there. 2. A separate error file is specified , otherwise all logs would go inside the apache/web server error log and get mixed up with other apache errors. 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver). 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like /var/log dont have to searched. 5. Dont set error_reporting to 0. It will not log anything then. Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file. Set 'display_errors=On' in php.ini on development machine On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page. Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work. Set 'display_errors=Off' in php.ini on production machine Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away. 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results. On a 64 bit machine you can see such output. $ php -aInteractive shellphp > echo strtotime("0000-00-00 00:00:00");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600 But on a 32 bit machine all of them would give bool(false). Check here for more. What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines. 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this : set_time_limit(30);//Rest of the code It may not always work. Any execution that happens outside the script via system calls/os functions like socket operations, database operations etc. will not be under control of set_time_limit. So if a database operation takes lot of time or "hangs" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time. 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it. A better solution : /** Method to execute a command in the terminal Uses : 1. system 2. passthru 3. exec 4. shell_exec*/function terminal($command){ //system if(function_exists('system')) { ob_start(); system($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //passthru else if(function_exists('passthru')) { ob_start(); passthru($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //exec else if(function_exists('exec')) { exec($command , $output , $return_var); $output = implode("\n" , $output); } //shell_exec else if(function_exists('shell_exec')) { $output = shell_exec($command) ; } else { $output = 'Command execution not possible on this system'; $return_var = 1; } return array('output' => $output , 'status' => $return_var);}terminal('ls'); The above function will execute the shell command using whichever function is available , keeping your code consistent. 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user. 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise. Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind. 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily. Few popular libraries are : mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference. 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code. Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community. They contain user feedback, expert advice and useful code snippets. So check them out. 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!! 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc. The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more 1. Codeigniter 2. WordPress 3. Joomla CMS 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment. Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster. Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free. 本站聲明 本文內(nèi)容由網(wǎng)友自發(fā)貢獻,版權(quán)歸原作者所有,本站不承擔相應(yīng)法律責任。如您發(fā)現(xiàn)有涉嫌抄襲侵權(quán)的內(nèi)容,請聯(lián)系admin@php.cn 熱AI工具 Undress AI Tool 免費脫衣服圖片 Undresser.AI Undress 人工智能驅(qū)動的應(yīng)用程序,用于創(chuàng)建逼真的裸體照片 AI Clothes Remover 用于從照片中去除衣服的在線人工智能工具。 Clothoff.io AI脫衣機 Video Face Swap 使用我們完全免費的人工智能換臉工具輕松在任何視頻中換臉! 顯示更多 熱門文章 指南:恒星刀片保存文件位置/保存文件丟失/不保存 4 周前 By DDD Oguri Cap Build Guide |漂亮的德比志 2 周前 By Jack chen Agnes Tachyon Build Guide |漂亮的德比志 1 周前 By Jack chen 沙丘:覺醒 - 高級行星學家Quest演練 4 周前 By Jack chen 約會一切:德克和哈珀關(guān)系指南 4 周前 By Jack chen 顯示更多 熱工具 記事本++7.3.1 好用且免費的代碼編輯器 SublimeText3漢化版 中文版,非常好用 禪工作室 13.0.1 功能強大的PHP集成開發(fā)環(huán)境 Dreamweaver CS6 視覺化網(wǎng)頁開發(fā)工具 SublimeText3 Mac版 神級代碼編輯軟件(SublimeText3) 顯示更多 熱門話題 gmail郵箱登陸入口在哪里 8638 17 Java教程 1783 16 CakePHP 教程 1728 56 Laravel 教程 1578 28 PHP教程 1442 31 顯示更多 Related knowledge 如何在PHP中實施身份驗證和授權(quán)? Jun 20, 2025 am 01:03 AM tosecurelyhandleauthenticationandationallizationInphp,lofterTheSesteps:1.AlwaysHashPasswordSwithPassword_hash()andverifyusingspasspassword_verify(),usepreparedStatatementStopreventsqlineptions,andStoreSeruserDatain usseruserDatain $ _sessiveferterlogin.2.implementrole-2.imaccessccsccccccccccccccccccccccccc. 如何在PHP中安全地處理文件上傳? Jun 19, 2025 am 01:05 AM 要安全處理PHP中的文件上傳,核心在于驗證文件類型、重命名文件并限制權(quán)限。1.使用finfo_file()檢查真實MIME類型,僅允許特定類型如image/jpeg;2.用uniqid()生成隨機文件名,存儲至非Web根目錄;3.通過php.ini和HTML表單限制文件大小,設(shè)置目錄權(quán)限為0755;4.使用ClamAV掃描惡意軟件,增強安全性。這些步驟有效防止安全漏洞,確保文件上傳過程安全可靠。 PHP中==(松散比較)和===(嚴格的比較)之間有什么區(qū)別? Jun 19, 2025 am 01:07 AM 在PHP中,==與===的主要區(qū)別在于類型檢查的嚴格程度。==在比較前會進行類型轉(zhuǎn)換,例如5=="5"返回true,而===要求值和類型都相同才會返回true,例如5==="5"返回false。使用場景上,===更安全應(yīng)優(yōu)先使用,==僅在需要類型轉(zhuǎn)換時使用。 如何在PHP( - , *, /,%)中執(zhí)行算術(shù)操作? Jun 19, 2025 pm 05:13 PM PHP中使用基本數(shù)學運算的方法如下:1.加法用 號,支持整數(shù)和浮點數(shù),也可用于變量,字符串數(shù)字會自動轉(zhuǎn)換但不推薦依賴;2.減法用-號,變量同理,類型轉(zhuǎn)換同樣適用;3.乘法用*號,適用于數(shù)字及類似字符串;4.除法用/號,需避免除以零,并注意結(jié)果可能是浮點數(shù);5.取模用%號,可用于判斷奇偶數(shù),處理負數(shù)時余數(shù)符號與被除數(shù)一致。正確使用這些運算符的關(guān)鍵在于確保數(shù)據(jù)類型清晰并處理好邊界情況。 如何與PHP的NOSQL數(shù)據(jù)庫(例如MongoDB,Redis)進行交互? Jun 19, 2025 am 01:07 AM 是的,PHP可以通過特定擴展或庫與MongoDB和Redis等NoSQL數(shù)據(jù)庫交互。首先,使用MongoDBPHP驅(qū)動(通過PECL或Composer安裝)創(chuàng)建客戶端實例并操作數(shù)據(jù)庫及集合,支持插入、查詢、聚合等操作;其次,使用Predis庫或phpredis擴展連接Redis,執(zhí)行鍵值設(shè)置與獲取,推薦phpredis用于高性能場景,Predis則便于快速部署;兩者均適用于生產(chǎn)環(huán)境且文檔完善。 我如何了解最新的PHP開發(fā)和最佳實踐? Jun 23, 2025 am 12:56 AM TostaycurrentwithPHPdevelopmentsandbestpractices,followkeynewssourceslikePHP.netandPHPWeekly,engagewithcommunitiesonforumsandconferences,keeptoolingupdatedandgraduallyadoptnewfeatures,andreadorcontributetoopensourceprojects.First,followreliablesource 什么是PHP,為什么它用于Web開發(fā)? Jun 23, 2025 am 12:55 AM PHPbecamepopularforwebdevelopmentduetoitseaseoflearning,seamlessintegrationwithHTML,widespreadhostingsupport,andalargeecosystemincludingframeworkslikeLaravelandCMSplatformslikeWordPress.Itexcelsinhandlingformsubmissions,managingusersessions,interacti 如何設(shè)置PHP時區(qū)? Jun 25, 2025 am 01:00 AM tosetTherightTimeZoneInphp,restate_default_timezone_set()functionAtthestArtofyourscriptWithavalIdidentIdentifiersuchas'america/new_york'.1.usedate_default_default_timezone_set_set() See all articles
On production , the display should be disabled.<\/p>
ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark.<\/p> After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set.<\/p> ini_set('log_errors' , '1');ini_set('error_log' , '\/path\/to\/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> Note :<\/p> 1. The path '\/path\/to\/errors.txt' should be writable by the web server for errors to be logged there.<\/p> 2. A separate error file is specified , otherwise all logs would go inside the apache\/web server error log and get mixed up with other apache errors.<\/p> 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver).<\/p> 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like \/var\/log dont have to searched.<\/p> 5. Dont set error_reporting to 0. It will not log anything then.<\/p> Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file.<\/p> Set 'display_errors=On' in php.ini on development machine<\/p> On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page.<\/p> Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work.<\/p> Set 'display_errors=Off' in php.ini on production machine<\/p> Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away.<\/p> 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results.<\/p> On a 64 bit machine you can see such output.<\/p> $ php -aInteractive shellphp > echo strtotime(\"0000-00-00 00:00:00\");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600<\/pre> But on a 32 bit machine all of them would give bool(false). Check here for more.<\/p> What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines.<\/p> 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this :<\/p> set_time_limit(30);\/\/Rest of the code<\/pre> It may not always work. Any execution that happens outside the script via system calls\/os functions like socket operations, database operations etc. will not be under control of set_time_limit.<\/p> So if a database operation takes lot of time or \"hangs\" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time.<\/p> 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it.<\/p> A better solution :<\/p> \/**\tMethod to execute a command in the terminal\tUses :\t1. system\t2. passthru\t3. exec\t4. shell_exec*\/function terminal($command){\t\/\/system\tif(function_exists('system'))\t{\t\tob_start();\t\tsystem($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/passthru\telse if(function_exists('passthru'))\t{\t\tob_start();\t\tpassthru($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/exec\telse if(function_exists('exec'))\t{\t\texec($command , $output , $return_var);\t\t$output = implode(\"\\n\" , $output);\t}\t\/\/shell_exec\telse if(function_exists('shell_exec'))\t{\t\t$output = shell_exec($command) ;\t}\telse\t{\t\t$output = 'Command execution not possible on this system';\t\t$return_var = 1;\t}\treturn array('output' => $output , 'status' => $return_var);}terminal('ls');<\/pre> The above function will execute the shell command using whichever function is available , keeping your code consistent.<\/p> 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user.<\/p> 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise.<\/p> Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind.<\/p> 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily.<\/p> Few popular libraries are :<\/p> mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference.<\/p> 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code.<\/p> Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community.<\/p> They contain user feedback, expert advice and useful code snippets. So check them out.<\/p> 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!!<\/p> 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc.<\/p> The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more<\/p> 1. Codeigniter 2. WordPress 3. Joomla CMS<\/p> 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment.<\/p> Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster.<\/p> Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free.<\/p> "} 社區(qū) 文章 合集 問答 學習 課程 編程詞典 工具庫 開發(fā)工具 網(wǎng)站源碼 PHP 庫 JS特效 網(wǎng)站素材 擴展插件 AI工具 休閑 游戲下載 游戲教程 簡體中文 簡體中文 English 繁體中文 日本語 ??? Melayu Fran?ais Deutsch Login singup 首頁 后端開發(fā) php教程 40+ Useful Php tips for beginners ? Part 1 40+ Useful Php tips for beginners ? Part 1 WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB Jun 23, 2016 pm 02:37 PM PHP學習指南 http://www.binarytides.com/category/php-2/tutorial/ In this series we are going to look into some useful tips and techniques that can be used to improve and optimise your php code. Note that these php tips are meant for beginners and not those who are already using mvc frameworks etc. The Techniques 1. Do not use relative paths , instead define a ROOT path Its quite common to see such lines : require_once('http://www.cnblogs.com/lib/some_class.php'); This approach has many drawbacks : It first searches for directories specified in the include paths of php , then looks from the current directory. So many directories are checked. When a script is included by another script in a different directory , its base directory changes to that of the including script. Another issue , is that when a script is being run from cron , it may not have its parent directory as the working directory. So its a good idea to have absolute paths : define('ROOT' , '/var/www/project/');require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code Now this is an absolute path and will always stay constant. But we can improve this further. The directory /var/www/project can change , so do we change it everytime ? No instead we make it portable using magic constants like __FILE__ . Take a closer look : //suppose your script is /var/www/project/index.php//Then __FILE__ will always have that full path.define('ROOT' , pathinfo(__FILE__, PATHINFO_DIRNAME));require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code So now even if you shift your project to a different directory , like moving it to an online server , the same code will run without any changes. 2. Dont use require , include , require_once or include_once Your script could be including various files on top , like class libraries , files for utility and helper functions etc like this : require_once('lib/Database.php');require_once('lib/Mail.php');require_once('helpers/utitlity_functions.php'); This is rather primitive. The code needs to be more flexible. Write up helper functions to include things more easily. Lets take an example : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); require_once( $path ); }load_class('Database');load_class('Mail'); See any difference ? You must. It does not need any more explanation. You can improve this further if you wish to like this : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); if(file_exists($path)) { require_once( $path ); }} There are a lot of things that can be done with this : Search multiple directories for the same class file. Change the directory containing class files easily , without breaking the code anywhere. Use similar functions for loading files that contain helper functions , html content etc. 3. Maintain debugging environment in your application During development we echo database queries , dump variables which are creating problems , and then once the problem is solved , we comment them or erase them. But its a good idea to let everything stay and help in the long run On your development machine you can do this : define('ENVIRONMENT' , 'development');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } And on the server you can do this : define('ENVIRONMENT' , 'production');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } 4. Propagate status messages via session Status messages are those messages that are generated after doing a task. <?phpif($wrong_username || $wrong_password){ $msg = 'Invalid username or password';}?><html><body><?php echo $msg; ?><form>...</form></body></html> Code like that is common. Using variables to show status messages has limitations. They cannot be send via redirects (unless you propagate them as GET variables to the next script , which is very silly). In large scripts there might be multiple messages etc. Best way is to use session to propagate them (even if on same page). For this there has to be a session_start on every page. function set_flash($msg){ $_SESSION['message'] = $msg;}function get_flash(){ $msg = $_SESSION['message']; unset($_SESSION['message']); return $msg;} and in your script : <?phpif($wrong_username || $wrong_password){ set_flash('Invalid username or password');}?><html><body>Status is : <?php echo get_flash(); ?><form>...</form></body></html> 5. Make your functions flexible function add_to_cart($item_id , $qty){ $_SESSION['cart'][$item_id] = $qty;}add_to_cart( 'IPHONE3' , 2 ); When adding a single item you use the above function. When adding multiple items , will you create another function ? NO. Just make the function flexible enough to take different kinds of parameters. Have a closer look : function add_to_cart($item_id , $qty){ if(!is_array($item_id)) { $_SESSION['cart'][$item_id] = $qty; } else { foreach($item_id as $i_id => $qty) { $_SESSION['cart'][$i_id] = $qty; } }}add_to_cart( 'IPHONE3' , 2 );add_to_cart( array('IPHONE3' => 2 , 'IPAD' => 5) ); So now the same function can accept different kinds of output. The above can be applied in lots of places to make your code more agile. 6. Omit the closing php tag if it is the last thing in a script I wonder why this tip is omitted from so many blog posts on php tips. <?phpecho "Hello";//Now dont close this tag This will save you lots of problem. Lets take an example : A class file super_class.php <?phpclass super_class{ function super_function() { //super code }}?>//super extra character after the closing tag Now index.php require_once('super_class.php');//echo an image or pdf , or set the cookies or session data And you will get Headers already send error. Why ? because the "super extra character" has been echoed , and all headers went along with that. Now you start debugging. You may have to waste many hours to find the super extra space. Hence make it a habit to omit the closing tag : <?phpclass super_class{ function super_function() { //super code }}//No closing tag Thats better. 7. Collect all output at one place , and output at one shot to the browser This is called output buffering. Lets say you have been echoing content from different functions like this : function print_header(){ echo "<div id='header'>Site Log and Login links</div>";}function print_footer(){ echo "<div id='footer'>Site was made by me</div>";}print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}print_footer(); Instead of doing like that , first collect all output in one place. You can either store it inside variables in the functions or use ob_start and ob_end_clean. So now it should look like function print_header(){ $o = "<div id='header'>Site Log and Login links</div>"; return $o;}function print_footer(){ $o = "<div id='footer'>Site was made by me</div>"; return $o;}echo print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}echo print_footer(); So why should you do output buffering : You can change the output just before sending it to browser if you need to. Think about doing some str_replaces , or may be preg_replaces or may be adding some extra html at the end like profiler/debugger output Its a bad idea to send output to browser and do php processing at the same time. Have you ever seen a website where there is a Fatal error in the sidebar or in a box in the middle of the screen. You know why that happens ? Because processing and output are being mixed. 8. Send correct mime types via header when outputting non-html content Lets echo some xml. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataecho $xml; Works fine. But it needs some improvement. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataheader("content-type: text/xml");echo $xml; Note that header line. That line tells the browser that the content is xml content. So the browser can handle it correctly. Many javascript libraries also rely on header information. Similarly for javascript , css , jpg image , png image : Javascript header("content-type: application/x-javascript");echo "var a = 10"; CSS header("content-type: text/css");echo "#div id { background:#000; }"; 9. Set the correct character encoding for a mysql connection Ever faced a problem that unicode/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation. $host = 'localhost';$username = 'root';$password = 'super_secret';//Attempt to connect to database$c = mysqli_connect($host , $username, $password); //Check connection validityif (!$c) { die ("Could not connect to the database host: <br />". mysqli_connect_error());} //Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){ die('mysqli_set_charset() failed');} Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application. Otherwise what will happen ? You will see lots of boxes and ???????? in non english text. 10. Use htmlentities with the correct characterset option Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc. $value = htmlentities($this->value , ENT_QUOTES , 'UTF-8'); Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual. 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php. Use apache mod_gzip/mod_deflate to compress content via the .htaccess file. 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php. $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= "'$image' ,";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;//Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,]; Be smart. use json_encode : $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;//Output is : var images = ["myself.png","friends.png","colleagues.png"] Isn't that neat ? 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of "debugging" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on. Make sure that your application is as intelligent as possible and reports the most important information in the shortest time. $contents = "All the content";$file_path = "/var/www/project/content.txt";file_put_contents($file_path , $contents); That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons : Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file. $contents = "All the content";$dir = '/var/www/project';$file_path = $dir . "/content.txt";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die("Directory $dir is not writable, or does not exist. Please check");} By doing this you get the accurate information that where is a file write failing and why 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are "accessible" outside. Otherwise for example the files may be created by "php" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on. // Read and write for owner, read for everybody elsechmod("/somedir/somefile", 0644);// Everything for owner, read and execute for otherschmod("/somedir/somefile", 0755); 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ //Save the things} The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this : if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ //Save the things} Now you are free from the value the submit button 16. Use static variables in function where they always have same value //Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} Instead use static variables as : //Delay for some timefunction delay(){ static $sync_delay = null; if($sync_delay == null) { $sync_delay = get_option('sync_delay'); } echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} 17. Don't use the $_SESSION variable directly Some simple examples are : $_SESSION['username'] = $username;$username = $_SESSION['username']; But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain. Hence use application specific keys with wrapper functions : define('APP_ID' , 'abc_corp_ecommerce');//Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}//Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;} 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like : function utility_a(){ //This function does a utility thing like string processing}function utility_b(){ //This function does nother utility thing like database processing}function utility_c(){ //This function is ...} And you use the function throughout your application freely. You may want to wrap them into a class as static functions : class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}//and call them as $a = Utility::utility_a();$b = Utility::utility_b(); One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else. 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++; Its absolutely a WASTE. Write if($a == true){ $a_count++;} Dont try to make your code shorter by eating up syntax. Rather make your logic shorter. Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this : foreach($arr as $c => $v){ $arr[$c] = trim($v);} But it can more cleaner with array_map : $arr = array_map('trim' , $arr); This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more. 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters. The php filter extension provides simple way to validate or check values as being a valid 'something'. 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate']; Its a good habit. 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded : $db_records_in_array_format; //This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; //2MB moresome_function($cc); //Another 2MB ? The above thing is common when importing a csv file or exporting table to a csv file Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays. Consider passing them by reference , or storing them in a class variable : $a = get_large_array();pass_to_function(&$a); by doing this the same variable (and not its copy) will be available to the function. Check documentation class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { //process $this->a }} unset them as soon as possible , so that memory is freed and rest of the script can relax. Here is a simple demonstration of how assign by reference can save memory in some cases <?phpini_set('display_errors' , true);error_reporting(E_ALL);$a = array();for($i = 0; $i < 100000 ; $i++){ $a[$i] = 'A'.$i;}echo 'Memory usage in MB : '. memory_get_usage() / 1000000 . '<br />';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() / 1000000 . '<br />';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() / 1000000 . '<br />';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() / 1000000 . '<br />'; The output on a typical php 5.4 machine is : Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more. 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this : function add_to_cart(){ $db = new Database(); $db->query("INSERT INTO cart .....");}function empty_cart(){ $db = new Database(); $db->query("DELETE FROM cart .....");} Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory. Use the singleton pattern for special cases like database connection. 26. Avoid direct SQL query , abstract it $query = "INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')";$db->query($query); //call to mysqli_query() The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like: All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries. A very simple example of an activerecord insert function can be like this : function insert_record($table_name , $data){ foreach($data as $key => $value) { //mysqli_real_escape_string $data[$key] = $db->mres($value); } $fields = implode(',' , array_keys($data)); $values = "'" . implode("','" , array_values($data)) . "'"; //Final query $query = "INSERT INTO {$table}($fields) VALUES($values)"; return $db->query($query);}//data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);//perform the INSERT queryinsert_record('users' , $data); The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse). This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise. 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again. Benefits : Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue. Storing session in database makes many other things easier like: Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example : <head> <base href="http://www.domain.com/store/"></head><body> <img src="/static/imghw/default1.png" data-src="happy.jpg" class="lazy" / alt="40+ Useful Php tips for beginners ? Part 1" ></body></html> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories. Lets take an example www.domain.com/store/home.php www.domain.com/store/products/ipad.php In home.php the following can be written : <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> But in ipad.php the links have to be like this : <a href="../home.php">Home</a><a href="ipad.php">Ipad</a> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag. <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products/ipad.php 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing. ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT); On production , the display should be disabled. ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark. After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set. ini_set('log_errors' , '1');ini_set('error_log' , '/path/to/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); Note : 1. The path '/path/to/errors.txt' should be writable by the web server for errors to be logged there. 2. A separate error file is specified , otherwise all logs would go inside the apache/web server error log and get mixed up with other apache errors. 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver). 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like /var/log dont have to searched. 5. Dont set error_reporting to 0. It will not log anything then. Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file. Set 'display_errors=On' in php.ini on development machine On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page. Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work. Set 'display_errors=Off' in php.ini on production machine Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away. 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results. On a 64 bit machine you can see such output. $ php -aInteractive shellphp > echo strtotime("0000-00-00 00:00:00");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600 But on a 32 bit machine all of them would give bool(false). Check here for more. What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines. 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this : set_time_limit(30);//Rest of the code It may not always work. Any execution that happens outside the script via system calls/os functions like socket operations, database operations etc. will not be under control of set_time_limit. So if a database operation takes lot of time or "hangs" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time. 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it. A better solution : /** Method to execute a command in the terminal Uses : 1. system 2. passthru 3. exec 4. shell_exec*/function terminal($command){ //system if(function_exists('system')) { ob_start(); system($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //passthru else if(function_exists('passthru')) { ob_start(); passthru($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //exec else if(function_exists('exec')) { exec($command , $output , $return_var); $output = implode("\n" , $output); } //shell_exec else if(function_exists('shell_exec')) { $output = shell_exec($command) ; } else { $output = 'Command execution not possible on this system'; $return_var = 1; } return array('output' => $output , 'status' => $return_var);}terminal('ls'); The above function will execute the shell command using whichever function is available , keeping your code consistent. 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user. 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise. Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind. 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily. Few popular libraries are : mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference. 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code. Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community. They contain user feedback, expert advice and useful code snippets. So check them out. 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!! 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc. The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more 1. Codeigniter 2. WordPress 3. Joomla CMS 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment. Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster. Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free. 本站聲明 本文內(nèi)容由網(wǎng)友自發(fā)貢獻,版權(quán)歸原作者所有,本站不承擔相應(yīng)法律責任。如您發(fā)現(xiàn)有涉嫌抄襲侵權(quán)的內(nèi)容,請聯(lián)系admin@php.cn 熱AI工具 Undress AI Tool 免費脫衣服圖片 Undresser.AI Undress 人工智能驅(qū)動的應(yīng)用程序,用于創(chuàng)建逼真的裸體照片 AI Clothes Remover 用于從照片中去除衣服的在線人工智能工具。 Clothoff.io AI脫衣機 Video Face Swap 使用我們完全免費的人工智能換臉工具輕松在任何視頻中換臉! 顯示更多 熱門文章 指南:恒星刀片保存文件位置/保存文件丟失/不保存 4 周前 By DDD Oguri Cap Build Guide |漂亮的德比志 2 周前 By Jack chen Agnes Tachyon Build Guide |漂亮的德比志 1 周前 By Jack chen 沙丘:覺醒 - 高級行星學家Quest演練 4 周前 By Jack chen 約會一切:德克和哈珀關(guān)系指南 4 周前 By Jack chen 顯示更多 熱工具 記事本++7.3.1 好用且免費的代碼編輯器 SublimeText3漢化版 中文版,非常好用 禪工作室 13.0.1 功能強大的PHP集成開發(fā)環(huán)境 Dreamweaver CS6 視覺化網(wǎng)頁開發(fā)工具 SublimeText3 Mac版 神級代碼編輯軟件(SublimeText3) 顯示更多 熱門話題 gmail郵箱登陸入口在哪里 8638 17 Java教程 1783 16 CakePHP 教程 1728 56 Laravel 教程 1578 28 PHP教程 1442 31 顯示更多 Related knowledge 如何在PHP中實施身份驗證和授權(quán)? Jun 20, 2025 am 01:03 AM tosecurelyhandleauthenticationandationallizationInphp,lofterTheSesteps:1.AlwaysHashPasswordSwithPassword_hash()andverifyusingspasspassword_verify(),usepreparedStatatementStopreventsqlineptions,andStoreSeruserDatain usseruserDatain $ _sessiveferterlogin.2.implementrole-2.imaccessccsccccccccccccccccccccccccc. 如何在PHP中安全地處理文件上傳? Jun 19, 2025 am 01:05 AM 要安全處理PHP中的文件上傳,核心在于驗證文件類型、重命名文件并限制權(quán)限。1.使用finfo_file()檢查真實MIME類型,僅允許特定類型如image/jpeg;2.用uniqid()生成隨機文件名,存儲至非Web根目錄;3.通過php.ini和HTML表單限制文件大小,設(shè)置目錄權(quán)限為0755;4.使用ClamAV掃描惡意軟件,增強安全性。這些步驟有效防止安全漏洞,確保文件上傳過程安全可靠。 PHP中==(松散比較)和===(嚴格的比較)之間有什么區(qū)別? Jun 19, 2025 am 01:07 AM 在PHP中,==與===的主要區(qū)別在于類型檢查的嚴格程度。==在比較前會進行類型轉(zhuǎn)換,例如5=="5"返回true,而===要求值和類型都相同才會返回true,例如5==="5"返回false。使用場景上,===更安全應(yīng)優(yōu)先使用,==僅在需要類型轉(zhuǎn)換時使用。 如何在PHP( - , *, /,%)中執(zhí)行算術(shù)操作? Jun 19, 2025 pm 05:13 PM PHP中使用基本數(shù)學運算的方法如下:1.加法用 號,支持整數(shù)和浮點數(shù),也可用于變量,字符串數(shù)字會自動轉(zhuǎn)換但不推薦依賴;2.減法用-號,變量同理,類型轉(zhuǎn)換同樣適用;3.乘法用*號,適用于數(shù)字及類似字符串;4.除法用/號,需避免除以零,并注意結(jié)果可能是浮點數(shù);5.取模用%號,可用于判斷奇偶數(shù),處理負數(shù)時余數(shù)符號與被除數(shù)一致。正確使用這些運算符的關(guān)鍵在于確保數(shù)據(jù)類型清晰并處理好邊界情況。 如何與PHP的NOSQL數(shù)據(jù)庫(例如MongoDB,Redis)進行交互? Jun 19, 2025 am 01:07 AM 是的,PHP可以通過特定擴展或庫與MongoDB和Redis等NoSQL數(shù)據(jù)庫交互。首先,使用MongoDBPHP驅(qū)動(通過PECL或Composer安裝)創(chuàng)建客戶端實例并操作數(shù)據(jù)庫及集合,支持插入、查詢、聚合等操作;其次,使用Predis庫或phpredis擴展連接Redis,執(zhí)行鍵值設(shè)置與獲取,推薦phpredis用于高性能場景,Predis則便于快速部署;兩者均適用于生產(chǎn)環(huán)境且文檔完善。 我如何了解最新的PHP開發(fā)和最佳實踐? Jun 23, 2025 am 12:56 AM TostaycurrentwithPHPdevelopmentsandbestpractices,followkeynewssourceslikePHP.netandPHPWeekly,engagewithcommunitiesonforumsandconferences,keeptoolingupdatedandgraduallyadoptnewfeatures,andreadorcontributetoopensourceprojects.First,followreliablesource 什么是PHP,為什么它用于Web開發(fā)? Jun 23, 2025 am 12:55 AM PHPbecamepopularforwebdevelopmentduetoitseaseoflearning,seamlessintegrationwithHTML,widespreadhostingsupport,andalargeecosystemincludingframeworkslikeLaravelandCMSplatformslikeWordPress.Itexcelsinhandlingformsubmissions,managingusersessions,interacti 如何設(shè)置PHP時區(qū)? Jun 25, 2025 am 01:00 AM tosetTherightTimeZoneInphp,restate_default_timezone_set()functionAtthestArtofyourscriptWithavalIdidentIdentifiersuchas'america/new_york'.1.usedate_default_default_timezone_set_set() See all articles
It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark.<\/p>
After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set.<\/p>
ini_set('log_errors' , '1');ini_set('error_log' , '\/path\/to\/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);<\/pre> Note :<\/p> 1. The path '\/path\/to\/errors.txt' should be writable by the web server for errors to be logged there.<\/p> 2. A separate error file is specified , otherwise all logs would go inside the apache\/web server error log and get mixed up with other apache errors.<\/p> 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver).<\/p> 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like \/var\/log dont have to searched.<\/p> 5. Dont set error_reporting to 0. It will not log anything then.<\/p> Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file.<\/p> Set 'display_errors=On' in php.ini on development machine<\/p> On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page.<\/p> Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work.<\/p> Set 'display_errors=Off' in php.ini on production machine<\/p> Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away.<\/p> 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results.<\/p> On a 64 bit machine you can see such output.<\/p> $ php -aInteractive shellphp > echo strtotime(\"0000-00-00 00:00:00\");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600<\/pre> But on a 32 bit machine all of them would give bool(false). Check here for more.<\/p> What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines.<\/p> 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this :<\/p> set_time_limit(30);\/\/Rest of the code<\/pre> It may not always work. Any execution that happens outside the script via system calls\/os functions like socket operations, database operations etc. will not be under control of set_time_limit.<\/p> So if a database operation takes lot of time or \"hangs\" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time.<\/p> 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it.<\/p> A better solution :<\/p> \/**\tMethod to execute a command in the terminal\tUses :\t1. system\t2. passthru\t3. exec\t4. shell_exec*\/function terminal($command){\t\/\/system\tif(function_exists('system'))\t{\t\tob_start();\t\tsystem($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/passthru\telse if(function_exists('passthru'))\t{\t\tob_start();\t\tpassthru($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/exec\telse if(function_exists('exec'))\t{\t\texec($command , $output , $return_var);\t\t$output = implode(\"\\n\" , $output);\t}\t\/\/shell_exec\telse if(function_exists('shell_exec'))\t{\t\t$output = shell_exec($command) ;\t}\telse\t{\t\t$output = 'Command execution not possible on this system';\t\t$return_var = 1;\t}\treturn array('output' => $output , 'status' => $return_var);}terminal('ls');<\/pre> The above function will execute the shell command using whichever function is available , keeping your code consistent.<\/p> 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user.<\/p> 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise.<\/p> Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind.<\/p> 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily.<\/p> Few popular libraries are :<\/p> mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference.<\/p> 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code.<\/p> Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community.<\/p> They contain user feedback, expert advice and useful code snippets. So check them out.<\/p> 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!!<\/p> 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc.<\/p> The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more<\/p> 1. Codeigniter 2. WordPress 3. Joomla CMS<\/p> 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment.<\/p> Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster.<\/p> Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free.<\/p> "} 社區(qū) 文章 合集 問答 學習 課程 編程詞典 工具庫 開發(fā)工具 網(wǎng)站源碼 PHP 庫 JS特效 網(wǎng)站素材 擴展插件 AI工具 休閑 游戲下載 游戲教程 簡體中文 簡體中文 English 繁體中文 日本語 ??? Melayu Fran?ais Deutsch Login singup 首頁 后端開發(fā) php教程 40+ Useful Php tips for beginners ? Part 1 40+ Useful Php tips for beginners ? Part 1 WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB Jun 23, 2016 pm 02:37 PM PHP學習指南 http://www.binarytides.com/category/php-2/tutorial/ In this series we are going to look into some useful tips and techniques that can be used to improve and optimise your php code. Note that these php tips are meant for beginners and not those who are already using mvc frameworks etc. The Techniques 1. Do not use relative paths , instead define a ROOT path Its quite common to see such lines : require_once('http://www.cnblogs.com/lib/some_class.php'); This approach has many drawbacks : It first searches for directories specified in the include paths of php , then looks from the current directory. So many directories are checked. When a script is included by another script in a different directory , its base directory changes to that of the including script. Another issue , is that when a script is being run from cron , it may not have its parent directory as the working directory. So its a good idea to have absolute paths : define('ROOT' , '/var/www/project/');require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code Now this is an absolute path and will always stay constant. But we can improve this further. The directory /var/www/project can change , so do we change it everytime ? No instead we make it portable using magic constants like __FILE__ . Take a closer look : //suppose your script is /var/www/project/index.php//Then __FILE__ will always have that full path.define('ROOT' , pathinfo(__FILE__, PATHINFO_DIRNAME));require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code So now even if you shift your project to a different directory , like moving it to an online server , the same code will run without any changes. 2. Dont use require , include , require_once or include_once Your script could be including various files on top , like class libraries , files for utility and helper functions etc like this : require_once('lib/Database.php');require_once('lib/Mail.php');require_once('helpers/utitlity_functions.php'); This is rather primitive. The code needs to be more flexible. Write up helper functions to include things more easily. Lets take an example : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); require_once( $path ); }load_class('Database');load_class('Mail'); See any difference ? You must. It does not need any more explanation. You can improve this further if you wish to like this : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); if(file_exists($path)) { require_once( $path ); }} There are a lot of things that can be done with this : Search multiple directories for the same class file. Change the directory containing class files easily , without breaking the code anywhere. Use similar functions for loading files that contain helper functions , html content etc. 3. Maintain debugging environment in your application During development we echo database queries , dump variables which are creating problems , and then once the problem is solved , we comment them or erase them. But its a good idea to let everything stay and help in the long run On your development machine you can do this : define('ENVIRONMENT' , 'development');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } And on the server you can do this : define('ENVIRONMENT' , 'production');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } 4. Propagate status messages via session Status messages are those messages that are generated after doing a task. <?phpif($wrong_username || $wrong_password){ $msg = 'Invalid username or password';}?><html><body><?php echo $msg; ?><form>...</form></body></html> Code like that is common. Using variables to show status messages has limitations. They cannot be send via redirects (unless you propagate them as GET variables to the next script , which is very silly). In large scripts there might be multiple messages etc. Best way is to use session to propagate them (even if on same page). For this there has to be a session_start on every page. function set_flash($msg){ $_SESSION['message'] = $msg;}function get_flash(){ $msg = $_SESSION['message']; unset($_SESSION['message']); return $msg;} and in your script : <?phpif($wrong_username || $wrong_password){ set_flash('Invalid username or password');}?><html><body>Status is : <?php echo get_flash(); ?><form>...</form></body></html> 5. Make your functions flexible function add_to_cart($item_id , $qty){ $_SESSION['cart'][$item_id] = $qty;}add_to_cart( 'IPHONE3' , 2 ); When adding a single item you use the above function. When adding multiple items , will you create another function ? NO. Just make the function flexible enough to take different kinds of parameters. Have a closer look : function add_to_cart($item_id , $qty){ if(!is_array($item_id)) { $_SESSION['cart'][$item_id] = $qty; } else { foreach($item_id as $i_id => $qty) { $_SESSION['cart'][$i_id] = $qty; } }}add_to_cart( 'IPHONE3' , 2 );add_to_cart( array('IPHONE3' => 2 , 'IPAD' => 5) ); So now the same function can accept different kinds of output. The above can be applied in lots of places to make your code more agile. 6. Omit the closing php tag if it is the last thing in a script I wonder why this tip is omitted from so many blog posts on php tips. <?phpecho "Hello";//Now dont close this tag This will save you lots of problem. Lets take an example : A class file super_class.php <?phpclass super_class{ function super_function() { //super code }}?>//super extra character after the closing tag Now index.php require_once('super_class.php');//echo an image or pdf , or set the cookies or session data And you will get Headers already send error. Why ? because the "super extra character" has been echoed , and all headers went along with that. Now you start debugging. You may have to waste many hours to find the super extra space. Hence make it a habit to omit the closing tag : <?phpclass super_class{ function super_function() { //super code }}//No closing tag Thats better. 7. Collect all output at one place , and output at one shot to the browser This is called output buffering. Lets say you have been echoing content from different functions like this : function print_header(){ echo "<div id='header'>Site Log and Login links</div>";}function print_footer(){ echo "<div id='footer'>Site was made by me</div>";}print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}print_footer(); Instead of doing like that , first collect all output in one place. You can either store it inside variables in the functions or use ob_start and ob_end_clean. So now it should look like function print_header(){ $o = "<div id='header'>Site Log and Login links</div>"; return $o;}function print_footer(){ $o = "<div id='footer'>Site was made by me</div>"; return $o;}echo print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}echo print_footer(); So why should you do output buffering : You can change the output just before sending it to browser if you need to. Think about doing some str_replaces , or may be preg_replaces or may be adding some extra html at the end like profiler/debugger output Its a bad idea to send output to browser and do php processing at the same time. Have you ever seen a website where there is a Fatal error in the sidebar or in a box in the middle of the screen. You know why that happens ? Because processing and output are being mixed. 8. Send correct mime types via header when outputting non-html content Lets echo some xml. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataecho $xml; Works fine. But it needs some improvement. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataheader("content-type: text/xml");echo $xml; Note that header line. That line tells the browser that the content is xml content. So the browser can handle it correctly. Many javascript libraries also rely on header information. Similarly for javascript , css , jpg image , png image : Javascript header("content-type: application/x-javascript");echo "var a = 10"; CSS header("content-type: text/css");echo "#div id { background:#000; }"; 9. Set the correct character encoding for a mysql connection Ever faced a problem that unicode/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation. $host = 'localhost';$username = 'root';$password = 'super_secret';//Attempt to connect to database$c = mysqli_connect($host , $username, $password); //Check connection validityif (!$c) { die ("Could not connect to the database host: <br />". mysqli_connect_error());} //Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){ die('mysqli_set_charset() failed');} Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application. Otherwise what will happen ? You will see lots of boxes and ???????? in non english text. 10. Use htmlentities with the correct characterset option Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc. $value = htmlentities($this->value , ENT_QUOTES , 'UTF-8'); Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual. 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php. Use apache mod_gzip/mod_deflate to compress content via the .htaccess file. 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php. $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= "'$image' ,";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;//Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,]; Be smart. use json_encode : $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;//Output is : var images = ["myself.png","friends.png","colleagues.png"] Isn't that neat ? 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of "debugging" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on. Make sure that your application is as intelligent as possible and reports the most important information in the shortest time. $contents = "All the content";$file_path = "/var/www/project/content.txt";file_put_contents($file_path , $contents); That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons : Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file. $contents = "All the content";$dir = '/var/www/project';$file_path = $dir . "/content.txt";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die("Directory $dir is not writable, or does not exist. Please check");} By doing this you get the accurate information that where is a file write failing and why 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are "accessible" outside. Otherwise for example the files may be created by "php" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on. // Read and write for owner, read for everybody elsechmod("/somedir/somefile", 0644);// Everything for owner, read and execute for otherschmod("/somedir/somefile", 0755); 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ //Save the things} The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this : if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ //Save the things} Now you are free from the value the submit button 16. Use static variables in function where they always have same value //Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} Instead use static variables as : //Delay for some timefunction delay(){ static $sync_delay = null; if($sync_delay == null) { $sync_delay = get_option('sync_delay'); } echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} 17. Don't use the $_SESSION variable directly Some simple examples are : $_SESSION['username'] = $username;$username = $_SESSION['username']; But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain. Hence use application specific keys with wrapper functions : define('APP_ID' , 'abc_corp_ecommerce');//Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}//Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;} 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like : function utility_a(){ //This function does a utility thing like string processing}function utility_b(){ //This function does nother utility thing like database processing}function utility_c(){ //This function is ...} And you use the function throughout your application freely. You may want to wrap them into a class as static functions : class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}//and call them as $a = Utility::utility_a();$b = Utility::utility_b(); One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else. 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++; Its absolutely a WASTE. Write if($a == true){ $a_count++;} Dont try to make your code shorter by eating up syntax. Rather make your logic shorter. Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this : foreach($arr as $c => $v){ $arr[$c] = trim($v);} But it can more cleaner with array_map : $arr = array_map('trim' , $arr); This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more. 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters. The php filter extension provides simple way to validate or check values as being a valid 'something'. 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate']; Its a good habit. 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded : $db_records_in_array_format; //This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; //2MB moresome_function($cc); //Another 2MB ? The above thing is common when importing a csv file or exporting table to a csv file Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays. Consider passing them by reference , or storing them in a class variable : $a = get_large_array();pass_to_function(&$a); by doing this the same variable (and not its copy) will be available to the function. Check documentation class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { //process $this->a }} unset them as soon as possible , so that memory is freed and rest of the script can relax. Here is a simple demonstration of how assign by reference can save memory in some cases <?phpini_set('display_errors' , true);error_reporting(E_ALL);$a = array();for($i = 0; $i < 100000 ; $i++){ $a[$i] = 'A'.$i;}echo 'Memory usage in MB : '. memory_get_usage() / 1000000 . '<br />';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() / 1000000 . '<br />';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() / 1000000 . '<br />';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() / 1000000 . '<br />'; The output on a typical php 5.4 machine is : Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more. 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this : function add_to_cart(){ $db = new Database(); $db->query("INSERT INTO cart .....");}function empty_cart(){ $db = new Database(); $db->query("DELETE FROM cart .....");} Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory. Use the singleton pattern for special cases like database connection. 26. Avoid direct SQL query , abstract it $query = "INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')";$db->query($query); //call to mysqli_query() The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like: All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries. A very simple example of an activerecord insert function can be like this : function insert_record($table_name , $data){ foreach($data as $key => $value) { //mysqli_real_escape_string $data[$key] = $db->mres($value); } $fields = implode(',' , array_keys($data)); $values = "'" . implode("','" , array_values($data)) . "'"; //Final query $query = "INSERT INTO {$table}($fields) VALUES($values)"; return $db->query($query);}//data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);//perform the INSERT queryinsert_record('users' , $data); The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse). This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise. 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again. Benefits : Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue. Storing session in database makes many other things easier like: Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example : <head> <base href="http://www.domain.com/store/"></head><body> <img src="/static/imghw/default1.png" data-src="happy.jpg" class="lazy" / alt="40+ Useful Php tips for beginners ? Part 1" ></body></html> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories. Lets take an example www.domain.com/store/home.php www.domain.com/store/products/ipad.php In home.php the following can be written : <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> But in ipad.php the links have to be like this : <a href="../home.php">Home</a><a href="ipad.php">Ipad</a> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag. <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products/ipad.php 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing. ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT); On production , the display should be disabled. ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark. After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set. ini_set('log_errors' , '1');ini_set('error_log' , '/path/to/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); Note : 1. The path '/path/to/errors.txt' should be writable by the web server for errors to be logged there. 2. A separate error file is specified , otherwise all logs would go inside the apache/web server error log and get mixed up with other apache errors. 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver). 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like /var/log dont have to searched. 5. Dont set error_reporting to 0. It will not log anything then. Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file. Set 'display_errors=On' in php.ini on development machine On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page. Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work. Set 'display_errors=Off' in php.ini on production machine Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away. 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results. On a 64 bit machine you can see such output. $ php -aInteractive shellphp > echo strtotime("0000-00-00 00:00:00");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600 But on a 32 bit machine all of them would give bool(false). Check here for more. What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines. 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this : set_time_limit(30);//Rest of the code It may not always work. Any execution that happens outside the script via system calls/os functions like socket operations, database operations etc. will not be under control of set_time_limit. So if a database operation takes lot of time or "hangs" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time. 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it. A better solution : /** Method to execute a command in the terminal Uses : 1. system 2. passthru 3. exec 4. shell_exec*/function terminal($command){ //system if(function_exists('system')) { ob_start(); system($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //passthru else if(function_exists('passthru')) { ob_start(); passthru($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //exec else if(function_exists('exec')) { exec($command , $output , $return_var); $output = implode("\n" , $output); } //shell_exec else if(function_exists('shell_exec')) { $output = shell_exec($command) ; } else { $output = 'Command execution not possible on this system'; $return_var = 1; } return array('output' => $output , 'status' => $return_var);}terminal('ls'); The above function will execute the shell command using whichever function is available , keeping your code consistent. 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user. 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise. Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind. 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily. Few popular libraries are : mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference. 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code. Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community. They contain user feedback, expert advice and useful code snippets. So check them out. 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!! 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc. The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more 1. Codeigniter 2. WordPress 3. Joomla CMS 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment. Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster. Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free. 本站聲明 本文內(nèi)容由網(wǎng)友自發(fā)貢獻,版權(quán)歸原作者所有,本站不承擔相應(yīng)法律責任。如您發(fā)現(xiàn)有涉嫌抄襲侵權(quán)的內(nèi)容,請聯(lián)系admin@php.cn 熱AI工具 Undress AI Tool 免費脫衣服圖片 Undresser.AI Undress 人工智能驅(qū)動的應(yīng)用程序,用于創(chuàng)建逼真的裸體照片 AI Clothes Remover 用于從照片中去除衣服的在線人工智能工具。 Clothoff.io AI脫衣機 Video Face Swap 使用我們完全免費的人工智能換臉工具輕松在任何視頻中換臉! 顯示更多 熱門文章 指南:恒星刀片保存文件位置/保存文件丟失/不保存 4 周前 By DDD Oguri Cap Build Guide |漂亮的德比志 2 周前 By Jack chen Agnes Tachyon Build Guide |漂亮的德比志 1 周前 By Jack chen 沙丘:覺醒 - 高級行星學家Quest演練 4 周前 By Jack chen 約會一切:德克和哈珀關(guān)系指南 4 周前 By Jack chen 顯示更多 熱工具 記事本++7.3.1 好用且免費的代碼編輯器 SublimeText3漢化版 中文版,非常好用 禪工作室 13.0.1 功能強大的PHP集成開發(fā)環(huán)境 Dreamweaver CS6 視覺化網(wǎng)頁開發(fā)工具 SublimeText3 Mac版 神級代碼編輯軟件(SublimeText3) 顯示更多 熱門話題 gmail郵箱登陸入口在哪里 8638 17 Java教程 1783 16 CakePHP 教程 1728 56 Laravel 教程 1578 28 PHP教程 1442 31 顯示更多 Related knowledge 如何在PHP中實施身份驗證和授權(quán)? Jun 20, 2025 am 01:03 AM tosecurelyhandleauthenticationandationallizationInphp,lofterTheSesteps:1.AlwaysHashPasswordSwithPassword_hash()andverifyusingspasspassword_verify(),usepreparedStatatementStopreventsqlineptions,andStoreSeruserDatain usseruserDatain $ _sessiveferterlogin.2.implementrole-2.imaccessccsccccccccccccccccccccccccc. 如何在PHP中安全地處理文件上傳? Jun 19, 2025 am 01:05 AM 要安全處理PHP中的文件上傳,核心在于驗證文件類型、重命名文件并限制權(quán)限。1.使用finfo_file()檢查真實MIME類型,僅允許特定類型如image/jpeg;2.用uniqid()生成隨機文件名,存儲至非Web根目錄;3.通過php.ini和HTML表單限制文件大小,設(shè)置目錄權(quán)限為0755;4.使用ClamAV掃描惡意軟件,增強安全性。這些步驟有效防止安全漏洞,確保文件上傳過程安全可靠。 PHP中==(松散比較)和===(嚴格的比較)之間有什么區(qū)別? Jun 19, 2025 am 01:07 AM 在PHP中,==與===的主要區(qū)別在于類型檢查的嚴格程度。==在比較前會進行類型轉(zhuǎn)換,例如5=="5"返回true,而===要求值和類型都相同才會返回true,例如5==="5"返回false。使用場景上,===更安全應(yīng)優(yōu)先使用,==僅在需要類型轉(zhuǎn)換時使用。 如何在PHP( - , *, /,%)中執(zhí)行算術(shù)操作? Jun 19, 2025 pm 05:13 PM PHP中使用基本數(shù)學運算的方法如下:1.加法用 號,支持整數(shù)和浮點數(shù),也可用于變量,字符串數(shù)字會自動轉(zhuǎn)換但不推薦依賴;2.減法用-號,變量同理,類型轉(zhuǎn)換同樣適用;3.乘法用*號,適用于數(shù)字及類似字符串;4.除法用/號,需避免除以零,并注意結(jié)果可能是浮點數(shù);5.取模用%號,可用于判斷奇偶數(shù),處理負數(shù)時余數(shù)符號與被除數(shù)一致。正確使用這些運算符的關(guān)鍵在于確保數(shù)據(jù)類型清晰并處理好邊界情況。 如何與PHP的NOSQL數(shù)據(jù)庫(例如MongoDB,Redis)進行交互? Jun 19, 2025 am 01:07 AM 是的,PHP可以通過特定擴展或庫與MongoDB和Redis等NoSQL數(shù)據(jù)庫交互。首先,使用MongoDBPHP驅(qū)動(通過PECL或Composer安裝)創(chuàng)建客戶端實例并操作數(shù)據(jù)庫及集合,支持插入、查詢、聚合等操作;其次,使用Predis庫或phpredis擴展連接Redis,執(zhí)行鍵值設(shè)置與獲取,推薦phpredis用于高性能場景,Predis則便于快速部署;兩者均適用于生產(chǎn)環(huán)境且文檔完善。 我如何了解最新的PHP開發(fā)和最佳實踐? Jun 23, 2025 am 12:56 AM TostaycurrentwithPHPdevelopmentsandbestpractices,followkeynewssourceslikePHP.netandPHPWeekly,engagewithcommunitiesonforumsandconferences,keeptoolingupdatedandgraduallyadoptnewfeatures,andreadorcontributetoopensourceprojects.First,followreliablesource 什么是PHP,為什么它用于Web開發(fā)? Jun 23, 2025 am 12:55 AM PHPbecamepopularforwebdevelopmentduetoitseaseoflearning,seamlessintegrationwithHTML,widespreadhostingsupport,andalargeecosystemincludingframeworkslikeLaravelandCMSplatformslikeWordPress.Itexcelsinhandlingformsubmissions,managingusersessions,interacti 如何設(shè)置PHP時區(qū)? Jun 25, 2025 am 01:00 AM tosetTherightTimeZoneInphp,restate_default_timezone_set()functionAtthestArtofyourscriptWithavalIdidentIdentifiersuchas'america/new_york'.1.usedate_default_default_timezone_set_set() See all articles
Note :<\/p>
1. The path '\/path\/to\/errors.txt' should be writable by the web server for errors to be logged there.<\/p>
2. A separate error file is specified , otherwise all logs would go inside the apache\/web server error log and get mixed up with other apache errors.<\/p>
3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver).<\/p>
4. The path can be somewhere inside the directory of the current application as well , so that the system directories like \/var\/log dont have to searched.<\/p>
5. Dont set error_reporting to 0. It will not log anything then.<\/p>
Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file.<\/p>
Set 'display_errors=On' in php.ini on development machine<\/p>
On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page.<\/p>
Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work.<\/p>
Set 'display_errors=Off' in php.ini on production machine<\/p>
Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away.<\/p> 32. Be aware of platform architecture
The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results.<\/p>
On a 64 bit machine you can see such output.<\/p>
$ php -aInteractive shellphp > echo strtotime(\"0000-00-00 00:00:00\");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600<\/pre> But on a 32 bit machine all of them would give bool(false). Check here for more.<\/p> What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines.<\/p> 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this :<\/p> set_time_limit(30);\/\/Rest of the code<\/pre> It may not always work. Any execution that happens outside the script via system calls\/os functions like socket operations, database operations etc. will not be under control of set_time_limit.<\/p> So if a database operation takes lot of time or \"hangs\" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time.<\/p> 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it.<\/p> A better solution :<\/p> \/**\tMethod to execute a command in the terminal\tUses :\t1. system\t2. passthru\t3. exec\t4. shell_exec*\/function terminal($command){\t\/\/system\tif(function_exists('system'))\t{\t\tob_start();\t\tsystem($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/passthru\telse if(function_exists('passthru'))\t{\t\tob_start();\t\tpassthru($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/exec\telse if(function_exists('exec'))\t{\t\texec($command , $output , $return_var);\t\t$output = implode(\"\\n\" , $output);\t}\t\/\/shell_exec\telse if(function_exists('shell_exec'))\t{\t\t$output = shell_exec($command) ;\t}\telse\t{\t\t$output = 'Command execution not possible on this system';\t\t$return_var = 1;\t}\treturn array('output' => $output , 'status' => $return_var);}terminal('ls');<\/pre> The above function will execute the shell command using whichever function is available , keeping your code consistent.<\/p> 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user.<\/p> 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise.<\/p> Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind.<\/p> 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily.<\/p> Few popular libraries are :<\/p> mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference.<\/p> 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code.<\/p> Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community.<\/p> They contain user feedback, expert advice and useful code snippets. So check them out.<\/p> 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!!<\/p> 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc.<\/p> The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more<\/p> 1. Codeigniter 2. WordPress 3. Joomla CMS<\/p> 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment.<\/p> Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster.<\/p> Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free.<\/p> "} 社區(qū) 文章 合集 問答 學習 課程 編程詞典 工具庫 開發(fā)工具 網(wǎng)站源碼 PHP 庫 JS特效 網(wǎng)站素材 擴展插件 AI工具 休閑 游戲下載 游戲教程 簡體中文 簡體中文 English 繁體中文 日本語 ??? Melayu Fran?ais Deutsch Login singup 首頁 后端開發(fā) php教程 40+ Useful Php tips for beginners ? Part 1 40+ Useful Php tips for beginners ? Part 1 WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB Jun 23, 2016 pm 02:37 PM PHP學習指南 http://www.binarytides.com/category/php-2/tutorial/ In this series we are going to look into some useful tips and techniques that can be used to improve and optimise your php code. Note that these php tips are meant for beginners and not those who are already using mvc frameworks etc. The Techniques 1. Do not use relative paths , instead define a ROOT path Its quite common to see such lines : require_once('http://www.cnblogs.com/lib/some_class.php'); This approach has many drawbacks : It first searches for directories specified in the include paths of php , then looks from the current directory. So many directories are checked. When a script is included by another script in a different directory , its base directory changes to that of the including script. Another issue , is that when a script is being run from cron , it may not have its parent directory as the working directory. So its a good idea to have absolute paths : define('ROOT' , '/var/www/project/');require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code Now this is an absolute path and will always stay constant. But we can improve this further. The directory /var/www/project can change , so do we change it everytime ? No instead we make it portable using magic constants like __FILE__ . Take a closer look : //suppose your script is /var/www/project/index.php//Then __FILE__ will always have that full path.define('ROOT' , pathinfo(__FILE__, PATHINFO_DIRNAME));require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code So now even if you shift your project to a different directory , like moving it to an online server , the same code will run without any changes. 2. Dont use require , include , require_once or include_once Your script could be including various files on top , like class libraries , files for utility and helper functions etc like this : require_once('lib/Database.php');require_once('lib/Mail.php');require_once('helpers/utitlity_functions.php'); This is rather primitive. The code needs to be more flexible. Write up helper functions to include things more easily. Lets take an example : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); require_once( $path ); }load_class('Database');load_class('Mail'); See any difference ? You must. It does not need any more explanation. You can improve this further if you wish to like this : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); if(file_exists($path)) { require_once( $path ); }} There are a lot of things that can be done with this : Search multiple directories for the same class file. Change the directory containing class files easily , without breaking the code anywhere. Use similar functions for loading files that contain helper functions , html content etc. 3. Maintain debugging environment in your application During development we echo database queries , dump variables which are creating problems , and then once the problem is solved , we comment them or erase them. But its a good idea to let everything stay and help in the long run On your development machine you can do this : define('ENVIRONMENT' , 'development');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } And on the server you can do this : define('ENVIRONMENT' , 'production');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } 4. Propagate status messages via session Status messages are those messages that are generated after doing a task. <?phpif($wrong_username || $wrong_password){ $msg = 'Invalid username or password';}?><html><body><?php echo $msg; ?><form>...</form></body></html> Code like that is common. Using variables to show status messages has limitations. They cannot be send via redirects (unless you propagate them as GET variables to the next script , which is very silly). In large scripts there might be multiple messages etc. Best way is to use session to propagate them (even if on same page). For this there has to be a session_start on every page. function set_flash($msg){ $_SESSION['message'] = $msg;}function get_flash(){ $msg = $_SESSION['message']; unset($_SESSION['message']); return $msg;} and in your script : <?phpif($wrong_username || $wrong_password){ set_flash('Invalid username or password');}?><html><body>Status is : <?php echo get_flash(); ?><form>...</form></body></html> 5. Make your functions flexible function add_to_cart($item_id , $qty){ $_SESSION['cart'][$item_id] = $qty;}add_to_cart( 'IPHONE3' , 2 ); When adding a single item you use the above function. When adding multiple items , will you create another function ? NO. Just make the function flexible enough to take different kinds of parameters. Have a closer look : function add_to_cart($item_id , $qty){ if(!is_array($item_id)) { $_SESSION['cart'][$item_id] = $qty; } else { foreach($item_id as $i_id => $qty) { $_SESSION['cart'][$i_id] = $qty; } }}add_to_cart( 'IPHONE3' , 2 );add_to_cart( array('IPHONE3' => 2 , 'IPAD' => 5) ); So now the same function can accept different kinds of output. The above can be applied in lots of places to make your code more agile. 6. Omit the closing php tag if it is the last thing in a script I wonder why this tip is omitted from so many blog posts on php tips. <?phpecho "Hello";//Now dont close this tag This will save you lots of problem. Lets take an example : A class file super_class.php <?phpclass super_class{ function super_function() { //super code }}?>//super extra character after the closing tag Now index.php require_once('super_class.php');//echo an image or pdf , or set the cookies or session data And you will get Headers already send error. Why ? because the "super extra character" has been echoed , and all headers went along with that. Now you start debugging. You may have to waste many hours to find the super extra space. Hence make it a habit to omit the closing tag : <?phpclass super_class{ function super_function() { //super code }}//No closing tag Thats better. 7. Collect all output at one place , and output at one shot to the browser This is called output buffering. Lets say you have been echoing content from different functions like this : function print_header(){ echo "<div id='header'>Site Log and Login links</div>";}function print_footer(){ echo "<div id='footer'>Site was made by me</div>";}print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}print_footer(); Instead of doing like that , first collect all output in one place. You can either store it inside variables in the functions or use ob_start and ob_end_clean. So now it should look like function print_header(){ $o = "<div id='header'>Site Log and Login links</div>"; return $o;}function print_footer(){ $o = "<div id='footer'>Site was made by me</div>"; return $o;}echo print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}echo print_footer(); So why should you do output buffering : You can change the output just before sending it to browser if you need to. Think about doing some str_replaces , or may be preg_replaces or may be adding some extra html at the end like profiler/debugger output Its a bad idea to send output to browser and do php processing at the same time. Have you ever seen a website where there is a Fatal error in the sidebar or in a box in the middle of the screen. You know why that happens ? Because processing and output are being mixed. 8. Send correct mime types via header when outputting non-html content Lets echo some xml. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataecho $xml; Works fine. But it needs some improvement. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataheader("content-type: text/xml");echo $xml; Note that header line. That line tells the browser that the content is xml content. So the browser can handle it correctly. Many javascript libraries also rely on header information. Similarly for javascript , css , jpg image , png image : Javascript header("content-type: application/x-javascript");echo "var a = 10"; CSS header("content-type: text/css");echo "#div id { background:#000; }"; 9. Set the correct character encoding for a mysql connection Ever faced a problem that unicode/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation. $host = 'localhost';$username = 'root';$password = 'super_secret';//Attempt to connect to database$c = mysqli_connect($host , $username, $password); //Check connection validityif (!$c) { die ("Could not connect to the database host: <br />". mysqli_connect_error());} //Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){ die('mysqli_set_charset() failed');} Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application. Otherwise what will happen ? You will see lots of boxes and ???????? in non english text. 10. Use htmlentities with the correct characterset option Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc. $value = htmlentities($this->value , ENT_QUOTES , 'UTF-8'); Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual. 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php. Use apache mod_gzip/mod_deflate to compress content via the .htaccess file. 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php. $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= "'$image' ,";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;//Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,]; Be smart. use json_encode : $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;//Output is : var images = ["myself.png","friends.png","colleagues.png"] Isn't that neat ? 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of "debugging" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on. Make sure that your application is as intelligent as possible and reports the most important information in the shortest time. $contents = "All the content";$file_path = "/var/www/project/content.txt";file_put_contents($file_path , $contents); That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons : Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file. $contents = "All the content";$dir = '/var/www/project';$file_path = $dir . "/content.txt";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die("Directory $dir is not writable, or does not exist. Please check");} By doing this you get the accurate information that where is a file write failing and why 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are "accessible" outside. Otherwise for example the files may be created by "php" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on. // Read and write for owner, read for everybody elsechmod("/somedir/somefile", 0644);// Everything for owner, read and execute for otherschmod("/somedir/somefile", 0755); 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ //Save the things} The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this : if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ //Save the things} Now you are free from the value the submit button 16. Use static variables in function where they always have same value //Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} Instead use static variables as : //Delay for some timefunction delay(){ static $sync_delay = null; if($sync_delay == null) { $sync_delay = get_option('sync_delay'); } echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} 17. Don't use the $_SESSION variable directly Some simple examples are : $_SESSION['username'] = $username;$username = $_SESSION['username']; But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain. Hence use application specific keys with wrapper functions : define('APP_ID' , 'abc_corp_ecommerce');//Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}//Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;} 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like : function utility_a(){ //This function does a utility thing like string processing}function utility_b(){ //This function does nother utility thing like database processing}function utility_c(){ //This function is ...} And you use the function throughout your application freely. You may want to wrap them into a class as static functions : class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}//and call them as $a = Utility::utility_a();$b = Utility::utility_b(); One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else. 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++; Its absolutely a WASTE. Write if($a == true){ $a_count++;} Dont try to make your code shorter by eating up syntax. Rather make your logic shorter. Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this : foreach($arr as $c => $v){ $arr[$c] = trim($v);} But it can more cleaner with array_map : $arr = array_map('trim' , $arr); This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more. 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters. The php filter extension provides simple way to validate or check values as being a valid 'something'. 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate']; Its a good habit. 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded : $db_records_in_array_format; //This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; //2MB moresome_function($cc); //Another 2MB ? The above thing is common when importing a csv file or exporting table to a csv file Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays. Consider passing them by reference , or storing them in a class variable : $a = get_large_array();pass_to_function(&$a); by doing this the same variable (and not its copy) will be available to the function. Check documentation class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { //process $this->a }} unset them as soon as possible , so that memory is freed and rest of the script can relax. Here is a simple demonstration of how assign by reference can save memory in some cases <?phpini_set('display_errors' , true);error_reporting(E_ALL);$a = array();for($i = 0; $i < 100000 ; $i++){ $a[$i] = 'A'.$i;}echo 'Memory usage in MB : '. memory_get_usage() / 1000000 . '<br />';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() / 1000000 . '<br />';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() / 1000000 . '<br />';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() / 1000000 . '<br />'; The output on a typical php 5.4 machine is : Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more. 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this : function add_to_cart(){ $db = new Database(); $db->query("INSERT INTO cart .....");}function empty_cart(){ $db = new Database(); $db->query("DELETE FROM cart .....");} Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory. Use the singleton pattern for special cases like database connection. 26. Avoid direct SQL query , abstract it $query = "INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')";$db->query($query); //call to mysqli_query() The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like: All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries. A very simple example of an activerecord insert function can be like this : function insert_record($table_name , $data){ foreach($data as $key => $value) { //mysqli_real_escape_string $data[$key] = $db->mres($value); } $fields = implode(',' , array_keys($data)); $values = "'" . implode("','" , array_values($data)) . "'"; //Final query $query = "INSERT INTO {$table}($fields) VALUES($values)"; return $db->query($query);}//data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);//perform the INSERT queryinsert_record('users' , $data); The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse). This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise. 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again. Benefits : Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue. Storing session in database makes many other things easier like: Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example : <head> <base href="http://www.domain.com/store/"></head><body> <img src="/static/imghw/default1.png" data-src="happy.jpg" class="lazy" / alt="40+ Useful Php tips for beginners ? Part 1" ></body></html> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories. Lets take an example www.domain.com/store/home.php www.domain.com/store/products/ipad.php In home.php the following can be written : <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> But in ipad.php the links have to be like this : <a href="../home.php">Home</a><a href="ipad.php">Ipad</a> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag. <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products/ipad.php 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing. ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT); On production , the display should be disabled. ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark. After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set. ini_set('log_errors' , '1');ini_set('error_log' , '/path/to/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); Note : 1. The path '/path/to/errors.txt' should be writable by the web server for errors to be logged there. 2. A separate error file is specified , otherwise all logs would go inside the apache/web server error log and get mixed up with other apache errors. 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver). 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like /var/log dont have to searched. 5. Dont set error_reporting to 0. It will not log anything then. Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file. Set 'display_errors=On' in php.ini on development machine On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page. Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work. Set 'display_errors=Off' in php.ini on production machine Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away. 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results. On a 64 bit machine you can see such output. $ php -aInteractive shellphp > echo strtotime("0000-00-00 00:00:00");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600 But on a 32 bit machine all of them would give bool(false). Check here for more. What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines. 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this : set_time_limit(30);//Rest of the code It may not always work. Any execution that happens outside the script via system calls/os functions like socket operations, database operations etc. will not be under control of set_time_limit. So if a database operation takes lot of time or "hangs" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time. 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it. A better solution : /** Method to execute a command in the terminal Uses : 1. system 2. passthru 3. exec 4. shell_exec*/function terminal($command){ //system if(function_exists('system')) { ob_start(); system($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //passthru else if(function_exists('passthru')) { ob_start(); passthru($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //exec else if(function_exists('exec')) { exec($command , $output , $return_var); $output = implode("\n" , $output); } //shell_exec else if(function_exists('shell_exec')) { $output = shell_exec($command) ; } else { $output = 'Command execution not possible on this system'; $return_var = 1; } return array('output' => $output , 'status' => $return_var);}terminal('ls'); The above function will execute the shell command using whichever function is available , keeping your code consistent. 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user. 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise. Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind. 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily. Few popular libraries are : mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference. 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code. Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community. They contain user feedback, expert advice and useful code snippets. So check them out. 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!! 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc. The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more 1. Codeigniter 2. WordPress 3. Joomla CMS 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment. Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster. Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free. 本站聲明 本文內(nèi)容由網(wǎng)友自發(fā)貢獻,版權(quán)歸原作者所有,本站不承擔相應(yīng)法律責任。如您發(fā)現(xiàn)有涉嫌抄襲侵權(quán)的內(nèi)容,請聯(lián)系admin@php.cn 熱AI工具 Undress AI Tool 免費脫衣服圖片 Undresser.AI Undress 人工智能驅(qū)動的應(yīng)用程序,用于創(chuàng)建逼真的裸體照片 AI Clothes Remover 用于從照片中去除衣服的在線人工智能工具。 Clothoff.io AI脫衣機 Video Face Swap 使用我們完全免費的人工智能換臉工具輕松在任何視頻中換臉! 顯示更多 熱門文章 指南:恒星刀片保存文件位置/保存文件丟失/不保存 4 周前 By DDD Oguri Cap Build Guide |漂亮的德比志 2 周前 By Jack chen Agnes Tachyon Build Guide |漂亮的德比志 1 周前 By Jack chen 沙丘:覺醒 - 高級行星學家Quest演練 4 周前 By Jack chen 約會一切:德克和哈珀關(guān)系指南 4 周前 By Jack chen 顯示更多 熱工具 記事本++7.3.1 好用且免費的代碼編輯器 SublimeText3漢化版 中文版,非常好用 禪工作室 13.0.1 功能強大的PHP集成開發(fā)環(huán)境 Dreamweaver CS6 視覺化網(wǎng)頁開發(fā)工具 SublimeText3 Mac版 神級代碼編輯軟件(SublimeText3) 顯示更多 熱門話題 gmail郵箱登陸入口在哪里 8638 17 Java教程 1783 16 CakePHP 教程 1728 56 Laravel 教程 1578 28 PHP教程 1442 31 顯示更多 Related knowledge 如何在PHP中實施身份驗證和授權(quán)? Jun 20, 2025 am 01:03 AM tosecurelyhandleauthenticationandationallizationInphp,lofterTheSesteps:1.AlwaysHashPasswordSwithPassword_hash()andverifyusingspasspassword_verify(),usepreparedStatatementStopreventsqlineptions,andStoreSeruserDatain usseruserDatain $ _sessiveferterlogin.2.implementrole-2.imaccessccsccccccccccccccccccccccccc. 如何在PHP中安全地處理文件上傳? Jun 19, 2025 am 01:05 AM 要安全處理PHP中的文件上傳,核心在于驗證文件類型、重命名文件并限制權(quán)限。1.使用finfo_file()檢查真實MIME類型,僅允許特定類型如image/jpeg;2.用uniqid()生成隨機文件名,存儲至非Web根目錄;3.通過php.ini和HTML表單限制文件大小,設(shè)置目錄權(quán)限為0755;4.使用ClamAV掃描惡意軟件,增強安全性。這些步驟有效防止安全漏洞,確保文件上傳過程安全可靠。 PHP中==(松散比較)和===(嚴格的比較)之間有什么區(qū)別? Jun 19, 2025 am 01:07 AM 在PHP中,==與===的主要區(qū)別在于類型檢查的嚴格程度。==在比較前會進行類型轉(zhuǎn)換,例如5=="5"返回true,而===要求值和類型都相同才會返回true,例如5==="5"返回false。使用場景上,===更安全應(yīng)優(yōu)先使用,==僅在需要類型轉(zhuǎn)換時使用。 如何在PHP( - , *, /,%)中執(zhí)行算術(shù)操作? Jun 19, 2025 pm 05:13 PM PHP中使用基本數(shù)學運算的方法如下:1.加法用 號,支持整數(shù)和浮點數(shù),也可用于變量,字符串數(shù)字會自動轉(zhuǎn)換但不推薦依賴;2.減法用-號,變量同理,類型轉(zhuǎn)換同樣適用;3.乘法用*號,適用于數(shù)字及類似字符串;4.除法用/號,需避免除以零,并注意結(jié)果可能是浮點數(shù);5.取模用%號,可用于判斷奇偶數(shù),處理負數(shù)時余數(shù)符號與被除數(shù)一致。正確使用這些運算符的關(guān)鍵在于確保數(shù)據(jù)類型清晰并處理好邊界情況。 如何與PHP的NOSQL數(shù)據(jù)庫(例如MongoDB,Redis)進行交互? Jun 19, 2025 am 01:07 AM 是的,PHP可以通過特定擴展或庫與MongoDB和Redis等NoSQL數(shù)據(jù)庫交互。首先,使用MongoDBPHP驅(qū)動(通過PECL或Composer安裝)創(chuàng)建客戶端實例并操作數(shù)據(jù)庫及集合,支持插入、查詢、聚合等操作;其次,使用Predis庫或phpredis擴展連接Redis,執(zhí)行鍵值設(shè)置與獲取,推薦phpredis用于高性能場景,Predis則便于快速部署;兩者均適用于生產(chǎn)環(huán)境且文檔完善。 我如何了解最新的PHP開發(fā)和最佳實踐? Jun 23, 2025 am 12:56 AM TostaycurrentwithPHPdevelopmentsandbestpractices,followkeynewssourceslikePHP.netandPHPWeekly,engagewithcommunitiesonforumsandconferences,keeptoolingupdatedandgraduallyadoptnewfeatures,andreadorcontributetoopensourceprojects.First,followreliablesource 什么是PHP,為什么它用于Web開發(fā)? Jun 23, 2025 am 12:55 AM PHPbecamepopularforwebdevelopmentduetoitseaseoflearning,seamlessintegrationwithHTML,widespreadhostingsupport,andalargeecosystemincludingframeworkslikeLaravelandCMSplatformslikeWordPress.Itexcelsinhandlingformsubmissions,managingusersessions,interacti 如何設(shè)置PHP時區(qū)? Jun 25, 2025 am 01:00 AM tosetTherightTimeZoneInphp,restate_default_timezone_set()functionAtthestArtofyourscriptWithavalIdidentIdentifiersuchas'america/new_york'.1.usedate_default_default_timezone_set_set() See all articles
But on a 32 bit machine all of them would give bool(false). Check here for more.<\/p>
What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines.<\/p> 33. Dont rely on set_time_limit too much
If you are limiting the maximum run-time of a script , by doing this :<\/p>
set_time_limit(30);\/\/Rest of the code<\/pre> It may not always work. Any execution that happens outside the script via system calls\/os functions like socket operations, database operations etc. will not be under control of set_time_limit.<\/p> So if a database operation takes lot of time or \"hangs\" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time.<\/p> 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it.<\/p> A better solution :<\/p> \/**\tMethod to execute a command in the terminal\tUses :\t1. system\t2. passthru\t3. exec\t4. shell_exec*\/function terminal($command){\t\/\/system\tif(function_exists('system'))\t{\t\tob_start();\t\tsystem($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/passthru\telse if(function_exists('passthru'))\t{\t\tob_start();\t\tpassthru($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/exec\telse if(function_exists('exec'))\t{\t\texec($command , $output , $return_var);\t\t$output = implode(\"\\n\" , $output);\t}\t\/\/shell_exec\telse if(function_exists('shell_exec'))\t{\t\t$output = shell_exec($command) ;\t}\telse\t{\t\t$output = 'Command execution not possible on this system';\t\t$return_var = 1;\t}\treturn array('output' => $output , 'status' => $return_var);}terminal('ls');<\/pre> The above function will execute the shell command using whichever function is available , keeping your code consistent.<\/p> 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user.<\/p> 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise.<\/p> Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind.<\/p> 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily.<\/p> Few popular libraries are :<\/p> mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference.<\/p> 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code.<\/p> Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community.<\/p> They contain user feedback, expert advice and useful code snippets. So check them out.<\/p> 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!!<\/p> 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc.<\/p> The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more<\/p> 1. Codeigniter 2. WordPress 3. Joomla CMS<\/p> 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment.<\/p> Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster.<\/p> Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free.<\/p> "} 社區(qū) 文章 合集 問答 學習 課程 編程詞典 工具庫 開發(fā)工具 網(wǎng)站源碼 PHP 庫 JS特效 網(wǎng)站素材 擴展插件 AI工具 休閑 游戲下載 游戲教程 簡體中文 簡體中文 English 繁體中文 日本語 ??? Melayu Fran?ais Deutsch Login singup 首頁 后端開發(fā) php教程 40+ Useful Php tips for beginners ? Part 1 40+ Useful Php tips for beginners ? Part 1 WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB Jun 23, 2016 pm 02:37 PM PHP學習指南 http://www.binarytides.com/category/php-2/tutorial/ In this series we are going to look into some useful tips and techniques that can be used to improve and optimise your php code. Note that these php tips are meant for beginners and not those who are already using mvc frameworks etc. The Techniques 1. Do not use relative paths , instead define a ROOT path Its quite common to see such lines : require_once('http://www.cnblogs.com/lib/some_class.php'); This approach has many drawbacks : It first searches for directories specified in the include paths of php , then looks from the current directory. So many directories are checked. When a script is included by another script in a different directory , its base directory changes to that of the including script. Another issue , is that when a script is being run from cron , it may not have its parent directory as the working directory. So its a good idea to have absolute paths : define('ROOT' , '/var/www/project/');require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code Now this is an absolute path and will always stay constant. But we can improve this further. The directory /var/www/project can change , so do we change it everytime ? No instead we make it portable using magic constants like __FILE__ . Take a closer look : //suppose your script is /var/www/project/index.php//Then __FILE__ will always have that full path.define('ROOT' , pathinfo(__FILE__, PATHINFO_DIRNAME));require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code So now even if you shift your project to a different directory , like moving it to an online server , the same code will run without any changes. 2. Dont use require , include , require_once or include_once Your script could be including various files on top , like class libraries , files for utility and helper functions etc like this : require_once('lib/Database.php');require_once('lib/Mail.php');require_once('helpers/utitlity_functions.php'); This is rather primitive. The code needs to be more flexible. Write up helper functions to include things more easily. Lets take an example : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); require_once( $path ); }load_class('Database');load_class('Mail'); See any difference ? You must. It does not need any more explanation. You can improve this further if you wish to like this : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); if(file_exists($path)) { require_once( $path ); }} There are a lot of things that can be done with this : Search multiple directories for the same class file. Change the directory containing class files easily , without breaking the code anywhere. Use similar functions for loading files that contain helper functions , html content etc. 3. Maintain debugging environment in your application During development we echo database queries , dump variables which are creating problems , and then once the problem is solved , we comment them or erase them. But its a good idea to let everything stay and help in the long run On your development machine you can do this : define('ENVIRONMENT' , 'development');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } And on the server you can do this : define('ENVIRONMENT' , 'production');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } 4. Propagate status messages via session Status messages are those messages that are generated after doing a task. <?phpif($wrong_username || $wrong_password){ $msg = 'Invalid username or password';}?><html><body><?php echo $msg; ?><form>...</form></body></html> Code like that is common. Using variables to show status messages has limitations. They cannot be send via redirects (unless you propagate them as GET variables to the next script , which is very silly). In large scripts there might be multiple messages etc. Best way is to use session to propagate them (even if on same page). For this there has to be a session_start on every page. function set_flash($msg){ $_SESSION['message'] = $msg;}function get_flash(){ $msg = $_SESSION['message']; unset($_SESSION['message']); return $msg;} and in your script : <?phpif($wrong_username || $wrong_password){ set_flash('Invalid username or password');}?><html><body>Status is : <?php echo get_flash(); ?><form>...</form></body></html> 5. Make your functions flexible function add_to_cart($item_id , $qty){ $_SESSION['cart'][$item_id] = $qty;}add_to_cart( 'IPHONE3' , 2 ); When adding a single item you use the above function. When adding multiple items , will you create another function ? NO. Just make the function flexible enough to take different kinds of parameters. Have a closer look : function add_to_cart($item_id , $qty){ if(!is_array($item_id)) { $_SESSION['cart'][$item_id] = $qty; } else { foreach($item_id as $i_id => $qty) { $_SESSION['cart'][$i_id] = $qty; } }}add_to_cart( 'IPHONE3' , 2 );add_to_cart( array('IPHONE3' => 2 , 'IPAD' => 5) ); So now the same function can accept different kinds of output. The above can be applied in lots of places to make your code more agile. 6. Omit the closing php tag if it is the last thing in a script I wonder why this tip is omitted from so many blog posts on php tips. <?phpecho "Hello";//Now dont close this tag This will save you lots of problem. Lets take an example : A class file super_class.php <?phpclass super_class{ function super_function() { //super code }}?>//super extra character after the closing tag Now index.php require_once('super_class.php');//echo an image or pdf , or set the cookies or session data And you will get Headers already send error. Why ? because the "super extra character" has been echoed , and all headers went along with that. Now you start debugging. You may have to waste many hours to find the super extra space. Hence make it a habit to omit the closing tag : <?phpclass super_class{ function super_function() { //super code }}//No closing tag Thats better. 7. Collect all output at one place , and output at one shot to the browser This is called output buffering. Lets say you have been echoing content from different functions like this : function print_header(){ echo "<div id='header'>Site Log and Login links</div>";}function print_footer(){ echo "<div id='footer'>Site was made by me</div>";}print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}print_footer(); Instead of doing like that , first collect all output in one place. You can either store it inside variables in the functions or use ob_start and ob_end_clean. So now it should look like function print_header(){ $o = "<div id='header'>Site Log and Login links</div>"; return $o;}function print_footer(){ $o = "<div id='footer'>Site was made by me</div>"; return $o;}echo print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}echo print_footer(); So why should you do output buffering : You can change the output just before sending it to browser if you need to. Think about doing some str_replaces , or may be preg_replaces or may be adding some extra html at the end like profiler/debugger output Its a bad idea to send output to browser and do php processing at the same time. Have you ever seen a website where there is a Fatal error in the sidebar or in a box in the middle of the screen. You know why that happens ? Because processing and output are being mixed. 8. Send correct mime types via header when outputting non-html content Lets echo some xml. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataecho $xml; Works fine. But it needs some improvement. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataheader("content-type: text/xml");echo $xml; Note that header line. That line tells the browser that the content is xml content. So the browser can handle it correctly. Many javascript libraries also rely on header information. Similarly for javascript , css , jpg image , png image : Javascript header("content-type: application/x-javascript");echo "var a = 10"; CSS header("content-type: text/css");echo "#div id { background:#000; }"; 9. Set the correct character encoding for a mysql connection Ever faced a problem that unicode/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation. $host = 'localhost';$username = 'root';$password = 'super_secret';//Attempt to connect to database$c = mysqli_connect($host , $username, $password); //Check connection validityif (!$c) { die ("Could not connect to the database host: <br />". mysqli_connect_error());} //Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){ die('mysqli_set_charset() failed');} Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application. Otherwise what will happen ? You will see lots of boxes and ???????? in non english text. 10. Use htmlentities with the correct characterset option Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc. $value = htmlentities($this->value , ENT_QUOTES , 'UTF-8'); Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual. 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php. Use apache mod_gzip/mod_deflate to compress content via the .htaccess file. 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php. $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= "'$image' ,";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;//Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,]; Be smart. use json_encode : $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;//Output is : var images = ["myself.png","friends.png","colleagues.png"] Isn't that neat ? 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of "debugging" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on. Make sure that your application is as intelligent as possible and reports the most important information in the shortest time. $contents = "All the content";$file_path = "/var/www/project/content.txt";file_put_contents($file_path , $contents); That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons : Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file. $contents = "All the content";$dir = '/var/www/project';$file_path = $dir . "/content.txt";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die("Directory $dir is not writable, or does not exist. Please check");} By doing this you get the accurate information that where is a file write failing and why 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are "accessible" outside. Otherwise for example the files may be created by "php" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on. // Read and write for owner, read for everybody elsechmod("/somedir/somefile", 0644);// Everything for owner, read and execute for otherschmod("/somedir/somefile", 0755); 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ //Save the things} The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this : if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ //Save the things} Now you are free from the value the submit button 16. Use static variables in function where they always have same value //Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} Instead use static variables as : //Delay for some timefunction delay(){ static $sync_delay = null; if($sync_delay == null) { $sync_delay = get_option('sync_delay'); } echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} 17. Don't use the $_SESSION variable directly Some simple examples are : $_SESSION['username'] = $username;$username = $_SESSION['username']; But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain. Hence use application specific keys with wrapper functions : define('APP_ID' , 'abc_corp_ecommerce');//Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}//Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;} 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like : function utility_a(){ //This function does a utility thing like string processing}function utility_b(){ //This function does nother utility thing like database processing}function utility_c(){ //This function is ...} And you use the function throughout your application freely. You may want to wrap them into a class as static functions : class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}//and call them as $a = Utility::utility_a();$b = Utility::utility_b(); One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else. 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++; Its absolutely a WASTE. Write if($a == true){ $a_count++;} Dont try to make your code shorter by eating up syntax. Rather make your logic shorter. Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this : foreach($arr as $c => $v){ $arr[$c] = trim($v);} But it can more cleaner with array_map : $arr = array_map('trim' , $arr); This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more. 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters. The php filter extension provides simple way to validate or check values as being a valid 'something'. 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate']; Its a good habit. 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded : $db_records_in_array_format; //This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; //2MB moresome_function($cc); //Another 2MB ? The above thing is common when importing a csv file or exporting table to a csv file Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays. Consider passing them by reference , or storing them in a class variable : $a = get_large_array();pass_to_function(&$a); by doing this the same variable (and not its copy) will be available to the function. Check documentation class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { //process $this->a }} unset them as soon as possible , so that memory is freed and rest of the script can relax. Here is a simple demonstration of how assign by reference can save memory in some cases <?phpini_set('display_errors' , true);error_reporting(E_ALL);$a = array();for($i = 0; $i < 100000 ; $i++){ $a[$i] = 'A'.$i;}echo 'Memory usage in MB : '. memory_get_usage() / 1000000 . '<br />';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() / 1000000 . '<br />';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() / 1000000 . '<br />';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() / 1000000 . '<br />'; The output on a typical php 5.4 machine is : Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more. 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this : function add_to_cart(){ $db = new Database(); $db->query("INSERT INTO cart .....");}function empty_cart(){ $db = new Database(); $db->query("DELETE FROM cart .....");} Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory. Use the singleton pattern for special cases like database connection. 26. Avoid direct SQL query , abstract it $query = "INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')";$db->query($query); //call to mysqli_query() The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like: All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries. A very simple example of an activerecord insert function can be like this : function insert_record($table_name , $data){ foreach($data as $key => $value) { //mysqli_real_escape_string $data[$key] = $db->mres($value); } $fields = implode(',' , array_keys($data)); $values = "'" . implode("','" , array_values($data)) . "'"; //Final query $query = "INSERT INTO {$table}($fields) VALUES($values)"; return $db->query($query);}//data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);//perform the INSERT queryinsert_record('users' , $data); The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse). This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise. 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again. Benefits : Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue. Storing session in database makes many other things easier like: Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example : <head> <base href="http://www.domain.com/store/"></head><body> <img src="/static/imghw/default1.png" data-src="happy.jpg" class="lazy" / alt="40+ Useful Php tips for beginners ? Part 1" ></body></html> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories. Lets take an example www.domain.com/store/home.php www.domain.com/store/products/ipad.php In home.php the following can be written : <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> But in ipad.php the links have to be like this : <a href="../home.php">Home</a><a href="ipad.php">Ipad</a> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag. <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products/ipad.php 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing. ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT); On production , the display should be disabled. ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark. After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set. ini_set('log_errors' , '1');ini_set('error_log' , '/path/to/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); Note : 1. The path '/path/to/errors.txt' should be writable by the web server for errors to be logged there. 2. A separate error file is specified , otherwise all logs would go inside the apache/web server error log and get mixed up with other apache errors. 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver). 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like /var/log dont have to searched. 5. Dont set error_reporting to 0. It will not log anything then. Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file. Set 'display_errors=On' in php.ini on development machine On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page. Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work. Set 'display_errors=Off' in php.ini on production machine Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away. 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results. On a 64 bit machine you can see such output. $ php -aInteractive shellphp > echo strtotime("0000-00-00 00:00:00");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600 But on a 32 bit machine all of them would give bool(false). Check here for more. What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines. 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this : set_time_limit(30);//Rest of the code It may not always work. Any execution that happens outside the script via system calls/os functions like socket operations, database operations etc. will not be under control of set_time_limit. So if a database operation takes lot of time or "hangs" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time. 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it. A better solution : /** Method to execute a command in the terminal Uses : 1. system 2. passthru 3. exec 4. shell_exec*/function terminal($command){ //system if(function_exists('system')) { ob_start(); system($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //passthru else if(function_exists('passthru')) { ob_start(); passthru($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //exec else if(function_exists('exec')) { exec($command , $output , $return_var); $output = implode("\n" , $output); } //shell_exec else if(function_exists('shell_exec')) { $output = shell_exec($command) ; } else { $output = 'Command execution not possible on this system'; $return_var = 1; } return array('output' => $output , 'status' => $return_var);}terminal('ls'); The above function will execute the shell command using whichever function is available , keeping your code consistent. 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user. 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise. Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind. 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily. Few popular libraries are : mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference. 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code. Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community. They contain user feedback, expert advice and useful code snippets. So check them out. 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!! 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc. The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more 1. Codeigniter 2. WordPress 3. Joomla CMS 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment. Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster. Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free. 本站聲明 本文內(nèi)容由網(wǎng)友自發(fā)貢獻,版權(quán)歸原作者所有,本站不承擔相應(yīng)法律責任。如您發(fā)現(xiàn)有涉嫌抄襲侵權(quán)的內(nèi)容,請聯(lián)系admin@php.cn 熱AI工具 Undress AI Tool 免費脫衣服圖片 Undresser.AI Undress 人工智能驅(qū)動的應(yīng)用程序,用于創(chuàng)建逼真的裸體照片 AI Clothes Remover 用于從照片中去除衣服的在線人工智能工具。 Clothoff.io AI脫衣機 Video Face Swap 使用我們完全免費的人工智能換臉工具輕松在任何視頻中換臉! 顯示更多 熱門文章 指南:恒星刀片保存文件位置/保存文件丟失/不保存 4 周前 By DDD Oguri Cap Build Guide |漂亮的德比志 2 周前 By Jack chen Agnes Tachyon Build Guide |漂亮的德比志 1 周前 By Jack chen 沙丘:覺醒 - 高級行星學家Quest演練 4 周前 By Jack chen 約會一切:德克和哈珀關(guān)系指南 4 周前 By Jack chen 顯示更多 熱工具 記事本++7.3.1 好用且免費的代碼編輯器 SublimeText3漢化版 中文版,非常好用 禪工作室 13.0.1 功能強大的PHP集成開發(fā)環(huán)境 Dreamweaver CS6 視覺化網(wǎng)頁開發(fā)工具 SublimeText3 Mac版 神級代碼編輯軟件(SublimeText3) 顯示更多 熱門話題 gmail郵箱登陸入口在哪里 8638 17 Java教程 1783 16 CakePHP 教程 1728 56 Laravel 教程 1578 28 PHP教程 1442 31 顯示更多 Related knowledge 如何在PHP中實施身份驗證和授權(quán)? Jun 20, 2025 am 01:03 AM tosecurelyhandleauthenticationandationallizationInphp,lofterTheSesteps:1.AlwaysHashPasswordSwithPassword_hash()andverifyusingspasspassword_verify(),usepreparedStatatementStopreventsqlineptions,andStoreSeruserDatain usseruserDatain $ _sessiveferterlogin.2.implementrole-2.imaccessccsccccccccccccccccccccccccc. 如何在PHP中安全地處理文件上傳? Jun 19, 2025 am 01:05 AM 要安全處理PHP中的文件上傳,核心在于驗證文件類型、重命名文件并限制權(quán)限。1.使用finfo_file()檢查真實MIME類型,僅允許特定類型如image/jpeg;2.用uniqid()生成隨機文件名,存儲至非Web根目錄;3.通過php.ini和HTML表單限制文件大小,設(shè)置目錄權(quán)限為0755;4.使用ClamAV掃描惡意軟件,增強安全性。這些步驟有效防止安全漏洞,確保文件上傳過程安全可靠。 PHP中==(松散比較)和===(嚴格的比較)之間有什么區(qū)別? Jun 19, 2025 am 01:07 AM 在PHP中,==與===的主要區(qū)別在于類型檢查的嚴格程度。==在比較前會進行類型轉(zhuǎn)換,例如5=="5"返回true,而===要求值和類型都相同才會返回true,例如5==="5"返回false。使用場景上,===更安全應(yīng)優(yōu)先使用,==僅在需要類型轉(zhuǎn)換時使用。 如何在PHP( - , *, /,%)中執(zhí)行算術(shù)操作? Jun 19, 2025 pm 05:13 PM PHP中使用基本數(shù)學運算的方法如下:1.加法用 號,支持整數(shù)和浮點數(shù),也可用于變量,字符串數(shù)字會自動轉(zhuǎn)換但不推薦依賴;2.減法用-號,變量同理,類型轉(zhuǎn)換同樣適用;3.乘法用*號,適用于數(shù)字及類似字符串;4.除法用/號,需避免除以零,并注意結(jié)果可能是浮點數(shù);5.取模用%號,可用于判斷奇偶數(shù),處理負數(shù)時余數(shù)符號與被除數(shù)一致。正確使用這些運算符的關(guān)鍵在于確保數(shù)據(jù)類型清晰并處理好邊界情況。 如何與PHP的NOSQL數(shù)據(jù)庫(例如MongoDB,Redis)進行交互? Jun 19, 2025 am 01:07 AM 是的,PHP可以通過特定擴展或庫與MongoDB和Redis等NoSQL數(shù)據(jù)庫交互。首先,使用MongoDBPHP驅(qū)動(通過PECL或Composer安裝)創(chuàng)建客戶端實例并操作數(shù)據(jù)庫及集合,支持插入、查詢、聚合等操作;其次,使用Predis庫或phpredis擴展連接Redis,執(zhí)行鍵值設(shè)置與獲取,推薦phpredis用于高性能場景,Predis則便于快速部署;兩者均適用于生產(chǎn)環(huán)境且文檔完善。 我如何了解最新的PHP開發(fā)和最佳實踐? Jun 23, 2025 am 12:56 AM TostaycurrentwithPHPdevelopmentsandbestpractices,followkeynewssourceslikePHP.netandPHPWeekly,engagewithcommunitiesonforumsandconferences,keeptoolingupdatedandgraduallyadoptnewfeatures,andreadorcontributetoopensourceprojects.First,followreliablesource 什么是PHP,為什么它用于Web開發(fā)? Jun 23, 2025 am 12:55 AM PHPbecamepopularforwebdevelopmentduetoitseaseoflearning,seamlessintegrationwithHTML,widespreadhostingsupport,andalargeecosystemincludingframeworkslikeLaravelandCMSplatformslikeWordPress.Itexcelsinhandlingformsubmissions,managingusersessions,interacti 如何設(shè)置PHP時區(qū)? Jun 25, 2025 am 01:00 AM tosetTherightTimeZoneInphp,restate_default_timezone_set()functionAtthestArtofyourscriptWithavalIdidentIdentifiersuchas'america/new_york'.1.usedate_default_default_timezone_set_set() See all articles
It may not always work. Any execution that happens outside the script via system calls\/os functions like socket operations, database operations etc. will not be under control of set_time_limit.<\/p>
So if a database operation takes lot of time or \"hangs\" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time.<\/p> 34. Make a portable function for executing shell commands
system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it.<\/p>
A better solution :<\/p>
\/**\tMethod to execute a command in the terminal\tUses :\t1. system\t2. passthru\t3. exec\t4. shell_exec*\/function terminal($command){\t\/\/system\tif(function_exists('system'))\t{\t\tob_start();\t\tsystem($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/passthru\telse if(function_exists('passthru'))\t{\t\tob_start();\t\tpassthru($command , $return_var);\t\t$output = ob_get_contents();\t\tob_end_clean();\t}\t\/\/exec\telse if(function_exists('exec'))\t{\t\texec($command , $output , $return_var);\t\t$output = implode(\"\\n\" , $output);\t}\t\/\/shell_exec\telse if(function_exists('shell_exec'))\t{\t\t$output = shell_exec($command) ;\t}\telse\t{\t\t$output = 'Command execution not possible on this system';\t\t$return_var = 1;\t}\treturn array('output' => $output , 'status' => $return_var);}terminal('ls');<\/pre> The above function will execute the shell command using whichever function is available , keeping your code consistent.<\/p> 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user.<\/p> 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise.<\/p> Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind.<\/p> 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily.<\/p> Few popular libraries are :<\/p> mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference.<\/p> 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code.<\/p> Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community.<\/p> They contain user feedback, expert advice and useful code snippets. So check them out.<\/p> 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!!<\/p> 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc.<\/p> The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more<\/p> 1. Codeigniter 2. WordPress 3. Joomla CMS<\/p> 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment.<\/p> Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster.<\/p> Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free.<\/p> "} 社區(qū) 文章 合集 問答 學習 課程 編程詞典 工具庫 開發(fā)工具 網(wǎng)站源碼 PHP 庫 JS特效 網(wǎng)站素材 擴展插件 AI工具 休閑 游戲下載 游戲教程 簡體中文 簡體中文 English 繁體中文 日本語 ??? Melayu Fran?ais Deutsch Login singup 首頁 后端開發(fā) php教程 40+ Useful Php tips for beginners ? Part 1 40+ Useful Php tips for beginners ? Part 1 WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB Jun 23, 2016 pm 02:37 PM PHP學習指南 http://www.binarytides.com/category/php-2/tutorial/ In this series we are going to look into some useful tips and techniques that can be used to improve and optimise your php code. Note that these php tips are meant for beginners and not those who are already using mvc frameworks etc. The Techniques 1. Do not use relative paths , instead define a ROOT path Its quite common to see such lines : require_once('http://www.cnblogs.com/lib/some_class.php'); This approach has many drawbacks : It first searches for directories specified in the include paths of php , then looks from the current directory. So many directories are checked. When a script is included by another script in a different directory , its base directory changes to that of the including script. Another issue , is that when a script is being run from cron , it may not have its parent directory as the working directory. So its a good idea to have absolute paths : define('ROOT' , '/var/www/project/');require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code Now this is an absolute path and will always stay constant. But we can improve this further. The directory /var/www/project can change , so do we change it everytime ? No instead we make it portable using magic constants like __FILE__ . Take a closer look : //suppose your script is /var/www/project/index.php//Then __FILE__ will always have that full path.define('ROOT' , pathinfo(__FILE__, PATHINFO_DIRNAME));require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code So now even if you shift your project to a different directory , like moving it to an online server , the same code will run without any changes. 2. Dont use require , include , require_once or include_once Your script could be including various files on top , like class libraries , files for utility and helper functions etc like this : require_once('lib/Database.php');require_once('lib/Mail.php');require_once('helpers/utitlity_functions.php'); This is rather primitive. The code needs to be more flexible. Write up helper functions to include things more easily. Lets take an example : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); require_once( $path ); }load_class('Database');load_class('Mail'); See any difference ? You must. It does not need any more explanation. You can improve this further if you wish to like this : function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); if(file_exists($path)) { require_once( $path ); }} There are a lot of things that can be done with this : Search multiple directories for the same class file. Change the directory containing class files easily , without breaking the code anywhere. Use similar functions for loading files that contain helper functions , html content etc. 3. Maintain debugging environment in your application During development we echo database queries , dump variables which are creating problems , and then once the problem is solved , we comment them or erase them. But its a good idea to let everything stay and help in the long run On your development machine you can do this : define('ENVIRONMENT' , 'development');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } And on the server you can do this : define('ENVIRONMENT' , 'production');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } } 4. Propagate status messages via session Status messages are those messages that are generated after doing a task. <?phpif($wrong_username || $wrong_password){ $msg = 'Invalid username or password';}?><html><body><?php echo $msg; ?><form>...</form></body></html> Code like that is common. Using variables to show status messages has limitations. They cannot be send via redirects (unless you propagate them as GET variables to the next script , which is very silly). In large scripts there might be multiple messages etc. Best way is to use session to propagate them (even if on same page). For this there has to be a session_start on every page. function set_flash($msg){ $_SESSION['message'] = $msg;}function get_flash(){ $msg = $_SESSION['message']; unset($_SESSION['message']); return $msg;} and in your script : <?phpif($wrong_username || $wrong_password){ set_flash('Invalid username or password');}?><html><body>Status is : <?php echo get_flash(); ?><form>...</form></body></html> 5. Make your functions flexible function add_to_cart($item_id , $qty){ $_SESSION['cart'][$item_id] = $qty;}add_to_cart( 'IPHONE3' , 2 ); When adding a single item you use the above function. When adding multiple items , will you create another function ? NO. Just make the function flexible enough to take different kinds of parameters. Have a closer look : function add_to_cart($item_id , $qty){ if(!is_array($item_id)) { $_SESSION['cart'][$item_id] = $qty; } else { foreach($item_id as $i_id => $qty) { $_SESSION['cart'][$i_id] = $qty; } }}add_to_cart( 'IPHONE3' , 2 );add_to_cart( array('IPHONE3' => 2 , 'IPAD' => 5) ); So now the same function can accept different kinds of output. The above can be applied in lots of places to make your code more agile. 6. Omit the closing php tag if it is the last thing in a script I wonder why this tip is omitted from so many blog posts on php tips. <?phpecho "Hello";//Now dont close this tag This will save you lots of problem. Lets take an example : A class file super_class.php <?phpclass super_class{ function super_function() { //super code }}?>//super extra character after the closing tag Now index.php require_once('super_class.php');//echo an image or pdf , or set the cookies or session data And you will get Headers already send error. Why ? because the "super extra character" has been echoed , and all headers went along with that. Now you start debugging. You may have to waste many hours to find the super extra space. Hence make it a habit to omit the closing tag : <?phpclass super_class{ function super_function() { //super code }}//No closing tag Thats better. 7. Collect all output at one place , and output at one shot to the browser This is called output buffering. Lets say you have been echoing content from different functions like this : function print_header(){ echo "<div id='header'>Site Log and Login links</div>";}function print_footer(){ echo "<div id='footer'>Site was made by me</div>";}print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}print_footer(); Instead of doing like that , first collect all output in one place. You can either store it inside variables in the functions or use ob_start and ob_end_clean. So now it should look like function print_header(){ $o = "<div id='header'>Site Log and Login links</div>"; return $o;}function print_footer(){ $o = "<div id='footer'>Site was made by me</div>"; return $o;}echo print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}echo print_footer(); So why should you do output buffering : You can change the output just before sending it to browser if you need to. Think about doing some str_replaces , or may be preg_replaces or may be adding some extra html at the end like profiler/debugger output Its a bad idea to send output to browser and do php processing at the same time. Have you ever seen a website where there is a Fatal error in the sidebar or in a box in the middle of the screen. You know why that happens ? Because processing and output are being mixed. 8. Send correct mime types via header when outputting non-html content Lets echo some xml. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataecho $xml; Works fine. But it needs some improvement. $xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataheader("content-type: text/xml");echo $xml; Note that header line. That line tells the browser that the content is xml content. So the browser can handle it correctly. Many javascript libraries also rely on header information. Similarly for javascript , css , jpg image , png image : Javascript header("content-type: application/x-javascript");echo "var a = 10"; CSS header("content-type: text/css");echo "#div id { background:#000; }"; 9. Set the correct character encoding for a mysql connection Ever faced a problem that unicode/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation. $host = 'localhost';$username = 'root';$password = 'super_secret';//Attempt to connect to database$c = mysqli_connect($host , $username, $password); //Check connection validityif (!$c) { die ("Could not connect to the database host: <br />". mysqli_connect_error());} //Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){ die('mysqli_set_charset() failed');} Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application. Otherwise what will happen ? You will see lots of boxes and ???????? in non english text. 10. Use htmlentities with the correct characterset option Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc. $value = htmlentities($this->value , ENT_QUOTES , 'UTF-8'); Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual. 11. Do not gzip output in your application , make apache do that Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php. Use apache mod_gzip/mod_deflate to compress content via the .htaccess file. 12. Use json_encode when echoing javascript code from php There are times when some javascript code is generated dynamically from php. $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= "'$image' ,";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;//Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,]; Be smart. use json_encode : $images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;//Output is : var images = ["myself.png","friends.png","colleagues.png"] Isn't that neat ? 13. Check if directory is writable before writing any files Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of "debugging" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on. Make sure that your application is as intelligent as possible and reports the most important information in the shortest time. $contents = "All the content";$file_path = "/var/www/project/content.txt";file_put_contents($file_path , $contents); That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons : Parent directory does not exist Directory exists , but is not writable File locked for writing ? So its better to make everything clear before writing out to a file. $contents = "All the content";$dir = '/var/www/project';$file_path = $dir . "/content.txt";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die("Directory $dir is not writable, or does not exist. Please check");} By doing this you get the accurate information that where is a file write failing and why 14. Change permission of files that your application creates When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are "accessible" outside. Otherwise for example the files may be created by "php" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on. // Read and write for owner, read for everybody elsechmod("/somedir/somefile", 0644);// Everything for owner, read and execute for otherschmod("/somedir/somefile", 0755); 15. Don't check submit button value to check form submission if($_POST['submit'] == 'Save'){ //Save the things} The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this : if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ //Save the things} Now you are free from the value the submit button 16. Use static variables in function where they always have same value //Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} Instead use static variables as : //Delay for some timefunction delay(){ static $sync_delay = null; if($sync_delay == null) { $sync_delay = get_option('sync_delay'); } echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";} 17. Don't use the $_SESSION variable directly Some simple examples are : $_SESSION['username'] = $username;$username = $_SESSION['username']; But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain. Hence use application specific keys with wrapper functions : define('APP_ID' , 'abc_corp_ecommerce');//Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}//Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;} 18. Wrap utility helper functions into a class So you have a lot of utility functions in a file like : function utility_a(){ //This function does a utility thing like string processing}function utility_b(){ //This function does nother utility thing like database processing}function utility_c(){ //This function is ...} And you use the function throughout your application freely. You may want to wrap them into a class as static functions : class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}//and call them as $a = Utility::utility_a();$b = Utility::utility_b(); One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else. 19. Bunch of silly tips Use echo instead of print Use str_replace instead of preg_replace , unless you need it absolutely Do not use short tags Use single quotes instead of double quotes for simple strings Always remember to do an exit after a header redirect Never put a function call in a for loop control line. isset is faster than strlen Format your code correctly and consistently Do not drop the brackets of loops or if-else blocks. Do not code like this : if($a == true) $a_count++; Its absolutely a WASTE. Write if($a == true){ $a_count++;} Dont try to make your code shorter by eating up syntax. Rather make your logic shorter. Use a proper text editor which has code highlighting. Code highlighting helps to create lesser errors. 20. Process arrays quickly with array_map Lets say you want to trim all elements of an array. Newbies do it like this : foreach($arr as $c => $v){ $arr[$c] = trim($v);} But it can more cleaner with array_map : $arr = array_map('trim' , $arr); This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more. 21. Validate data with php filters Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters. The php filter extension provides simple way to validate or check values as being a valid 'something'. 22. Force type checking $amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate']; Its a good habit. 23. Write Php errors to file using set_error_handler() set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose 24. Handle large arrays carefully Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded : $db_records_in_array_format; //This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; //2MB moresome_function($cc); //Another 2MB ? The above thing is common when importing a csv file or exporting table to a csv file Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays. Consider passing them by reference , or storing them in a class variable : $a = get_large_array();pass_to_function(&$a); by doing this the same variable (and not its copy) will be available to the function. Check documentation class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { //process $this->a }} unset them as soon as possible , so that memory is freed and rest of the script can relax. Here is a simple demonstration of how assign by reference can save memory in some cases <?phpini_set('display_errors' , true);error_reporting(E_ALL);$a = array();for($i = 0; $i < 100000 ; $i++){ $a[$i] = 'A'.$i;}echo 'Memory usage in MB : '. memory_get_usage() / 1000000 . '<br />';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() / 1000000 . '<br />';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() / 1000000 . '<br />';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() / 1000000 . '<br />'; The output on a typical php 5.4 machine is : Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864 So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more. 25. Use a single database connection, throughout the script Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this : function add_to_cart(){ $db = new Database(); $db->query("INSERT INTO cart .....");}function empty_cart(){ $db = new Database(); $db->query("DELETE FROM cart .....");} Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory. Use the singleton pattern for special cases like database connection. 26. Avoid direct SQL query , abstract it $query = "INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')";$db->query($query); //call to mysqli_query() The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like: All values have to be escaped everytime manually Manually verify the sql syntax everytime. Wrong queries may go undetected for a long time (unless if else checking done everytime) Difficult to maintain large queries like that Solution: ActiveRecord It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries. A very simple example of an activerecord insert function can be like this : function insert_record($table_name , $data){ foreach($data as $key => $value) { //mysqli_real_escape_string $data[$key] = $db->mres($value); } $fields = implode(',' , array_keys($data)); $values = "'" . implode("','" , array_values($data)) . "'"; //Final query $query = "INSERT INTO {$table}($fields) VALUES($values)"; return $db->query($query);}//data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);//perform the INSERT queryinsert_record('users' , $data); The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse). This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise. 27. Cache database generated content to static files Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again. Benefits : Save php processing to generate the page , hence faster execution Lesser database queries means lesser load on mysql database 28. Store sessions in database File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue. Storing session in database makes many other things easier like: Restrict concurrent logins from same username. Same username cannot log in from 2 different places at same time Check online status of users more accurately 29. Avoid using globals Use defines/constants Get value using a function Use Class and access via $this 30. Use base url in head tag Quick example : <head> <base href="http://www.domain.com/store/"></head><body> <img src="/static/imghw/default1.png" data-src="happy.jpg" class="lazy" / alt="40+ Useful Php tips for beginners ? Part 1" ></body></html> The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories. Lets take an example www.domain.com/store/home.php www.domain.com/store/products/ipad.php In home.php the following can be written : <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> But in ipad.php the links have to be like this : <a href="../home.php">Home</a><a href="ipad.php">Ipad</a> This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag. <a href="home.php">Home</a><a href="products/ipad.php">Ipad</a> Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products/ipad.php 31. Manage error reporting error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing. ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT); On production , the display should be disabled. ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark. After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set. ini_set('log_errors' , '1');ini_set('error_log' , '/path/to/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT); Note : 1. The path '/path/to/errors.txt' should be writable by the web server for errors to be logged there. 2. A separate error file is specified , otherwise all logs would go inside the apache/web server error log and get mixed up with other apache errors. 3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver). 4. The path can be somewhere inside the directory of the current application as well , so that the system directories like /var/log dont have to searched. 5. Dont set error_reporting to 0. It will not log anything then. Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file. Set 'display_errors=On' in php.ini on development machine On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page. Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work. Set 'display_errors=Off' in php.ini on production machine Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away. 32. Be aware of platform architecture The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results. On a 64 bit machine you can see such output. $ php -aInteractive shellphp > echo strtotime("0000-00-00 00:00:00");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600 But on a 32 bit machine all of them would give bool(false). Check here for more. What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines. 33. Dont rely on set_time_limit too much If you are limiting the maximum run-time of a script , by doing this : set_time_limit(30);//Rest of the code It may not always work. Any execution that happens outside the script via system calls/os functions like socket operations, database operations etc. will not be under control of set_time_limit. So if a database operation takes lot of time or "hangs" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time. 34. Make a portable function for executing shell commands system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it. A better solution : /** Method to execute a command in the terminal Uses : 1. system 2. passthru 3. exec 4. shell_exec*/function terminal($command){ //system if(function_exists('system')) { ob_start(); system($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //passthru else if(function_exists('passthru')) { ob_start(); passthru($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //exec else if(function_exists('exec')) { exec($command , $output , $return_var); $output = implode("\n" , $output); } //shell_exec else if(function_exists('shell_exec')) { $output = shell_exec($command) ; } else { $output = 'Command execution not possible on this system'; $return_var = 1; } return array('output' => $output , 'status' => $return_var);}terminal('ls'); The above function will execute the shell command using whichever function is available , keeping your code consistent. 35. Localize your application Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user. 36. Use a profiler like xdebug if you need to Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise. Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind. 37. Use plenty of external libraries An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily. Few popular libraries are : mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference. 39. Use an MVC framework Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code. Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community. They contain user feedback, expert advice and useful code snippets. So check them out. 41. Go to the IRC channel to ask The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!! 42. Read open source code Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc. The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more 1. Codeigniter 2. WordPress 3. Joomla CMS 43. Develop on Linux If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment. Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster. Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free. 本站聲明 本文內(nèi)容由網(wǎng)友自發(fā)貢獻,版權(quán)歸原作者所有,本站不承擔相應(yīng)法律責任。如您發(fā)現(xiàn)有涉嫌抄襲侵權(quán)的內(nèi)容,請聯(lián)系admin@php.cn 熱AI工具 Undress AI Tool 免費脫衣服圖片 Undresser.AI Undress 人工智能驅(qū)動的應(yīng)用程序,用于創(chuàng)建逼真的裸體照片 AI Clothes Remover 用于從照片中去除衣服的在線人工智能工具。 Clothoff.io AI脫衣機 Video Face Swap 使用我們完全免費的人工智能換臉工具輕松在任何視頻中換臉! 顯示更多 熱門文章 指南:恒星刀片保存文件位置/保存文件丟失/不保存 4 周前 By DDD Oguri Cap Build Guide |漂亮的德比志 2 周前 By Jack chen Agnes Tachyon Build Guide |漂亮的德比志 1 周前 By Jack chen 沙丘:覺醒 - 高級行星學家Quest演練 4 周前 By Jack chen 約會一切:德克和哈珀關(guān)系指南 4 周前 By Jack chen 顯示更多 熱工具 記事本++7.3.1 好用且免費的代碼編輯器 SublimeText3漢化版 中文版,非常好用 禪工作室 13.0.1 功能強大的PHP集成開發(fā)環(huán)境 Dreamweaver CS6 視覺化網(wǎng)頁開發(fā)工具 SublimeText3 Mac版 神級代碼編輯軟件(SublimeText3) 顯示更多 熱門話題 gmail郵箱登陸入口在哪里 8638 17 Java教程 1783 16 CakePHP 教程 1728 56 Laravel 教程 1578 28 PHP教程 1442 31 顯示更多 Related knowledge 如何在PHP中實施身份驗證和授權(quán)? Jun 20, 2025 am 01:03 AM tosecurelyhandleauthenticationandationallizationInphp,lofterTheSesteps:1.AlwaysHashPasswordSwithPassword_hash()andverifyusingspasspassword_verify(),usepreparedStatatementStopreventsqlineptions,andStoreSeruserDatain usseruserDatain $ _sessiveferterlogin.2.implementrole-2.imaccessccsccccccccccccccccccccccccc. 如何在PHP中安全地處理文件上傳? Jun 19, 2025 am 01:05 AM 要安全處理PHP中的文件上傳,核心在于驗證文件類型、重命名文件并限制權(quán)限。1.使用finfo_file()檢查真實MIME類型,僅允許特定類型如image/jpeg;2.用uniqid()生成隨機文件名,存儲至非Web根目錄;3.通過php.ini和HTML表單限制文件大小,設(shè)置目錄權(quán)限為0755;4.使用ClamAV掃描惡意軟件,增強安全性。這些步驟有效防止安全漏洞,確保文件上傳過程安全可靠。 PHP中==(松散比較)和===(嚴格的比較)之間有什么區(qū)別? Jun 19, 2025 am 01:07 AM 在PHP中,==與===的主要區(qū)別在于類型檢查的嚴格程度。==在比較前會進行類型轉(zhuǎn)換,例如5=="5"返回true,而===要求值和類型都相同才會返回true,例如5==="5"返回false。使用場景上,===更安全應(yīng)優(yōu)先使用,==僅在需要類型轉(zhuǎn)換時使用。 如何在PHP( - , *, /,%)中執(zhí)行算術(shù)操作? Jun 19, 2025 pm 05:13 PM PHP中使用基本數(shù)學運算的方法如下:1.加法用 號,支持整數(shù)和浮點數(shù),也可用于變量,字符串數(shù)字會自動轉(zhuǎn)換但不推薦依賴;2.減法用-號,變量同理,類型轉(zhuǎn)換同樣適用;3.乘法用*號,適用于數(shù)字及類似字符串;4.除法用/號,需避免除以零,并注意結(jié)果可能是浮點數(shù);5.取模用%號,可用于判斷奇偶數(shù),處理負數(shù)時余數(shù)符號與被除數(shù)一致。正確使用這些運算符的關(guān)鍵在于確保數(shù)據(jù)類型清晰并處理好邊界情況。 如何與PHP的NOSQL數(shù)據(jù)庫(例如MongoDB,Redis)進行交互? Jun 19, 2025 am 01:07 AM 是的,PHP可以通過特定擴展或庫與MongoDB和Redis等NoSQL數(shù)據(jù)庫交互。首先,使用MongoDBPHP驅(qū)動(通過PECL或Composer安裝)創(chuàng)建客戶端實例并操作數(shù)據(jù)庫及集合,支持插入、查詢、聚合等操作;其次,使用Predis庫或phpredis擴展連接Redis,執(zhí)行鍵值設(shè)置與獲取,推薦phpredis用于高性能場景,Predis則便于快速部署;兩者均適用于生產(chǎn)環(huán)境且文檔完善。 我如何了解最新的PHP開發(fā)和最佳實踐? Jun 23, 2025 am 12:56 AM TostaycurrentwithPHPdevelopmentsandbestpractices,followkeynewssourceslikePHP.netandPHPWeekly,engagewithcommunitiesonforumsandconferences,keeptoolingupdatedandgraduallyadoptnewfeatures,andreadorcontributetoopensourceprojects.First,followreliablesource 什么是PHP,為什么它用于Web開發(fā)? Jun 23, 2025 am 12:55 AM PHPbecamepopularforwebdevelopmentduetoitseaseoflearning,seamlessintegrationwithHTML,widespreadhostingsupport,andalargeecosystemincludingframeworkslikeLaravelandCMSplatformslikeWordPress.Itexcelsinhandlingformsubmissions,managingusersessions,interacti 如何設(shè)置PHP時區(qū)? Jun 25, 2025 am 01:00 AM tosetTherightTimeZoneInphp,restate_default_timezone_set()functionAtthestArtofyourscriptWithavalIdidentIdentifiersuchas'america/new_york'.1.usedate_default_default_timezone_set_set() See all articles
The above function will execute the shell command using whichever function is available , keeping your code consistent.<\/p> 35. Localize your application
Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user.<\/p> 36. Use a profiler like xdebug if you need to
Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise.<\/p>
Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind.<\/p> 37. Use plenty of external libraries
An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily.<\/p>
Few popular libraries are :<\/p> mPDF - Generate pdf documents, by converting html to pdf beautifully. PHPExcel - Read and write Excel files PhpMailer - Send html emails with attachments easily pChart - Generate graphs in php 38. Have a look at phpbench for some micro-optimisation stats
If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference.<\/p> 39. Use an MVC framework
Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code.<\/p> Clean separation of php and html code. Good for team work, when designers and coders are working together. Functions and functionalities are organised in classes making maintenance easy. Inbuilt libraries for various needs like email, string processing, image processing, file uploads etc. Is a must when writing big applications Lots of tips, techniques, hacks are already implemented in the framework 40. Read the comments on the php documentation website
The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community.<\/p>
They contain user feedback, expert advice and useful code snippets. So check them out.<\/p> 41. Go to the IRC channel to ask
The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!!<\/p> 42. Read open source code
Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc.<\/p>
The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more<\/p>
1. Codeigniter 2. WordPress 3. Joomla CMS<\/p> 43. Develop on Linux
If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment.<\/p>
Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster.<\/p>
Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free.<\/p> "}
PHP學習指南
http://www.binarytides.com/category/php-2/tutorial/
In this series we are going to look into some useful tips and techniques that can be used to improve and optimise your php code. Note that these php tips are meant for beginners and not those who are already using mvc frameworks etc.
Its quite common to see such lines :
require_once('http://www.cnblogs.com/lib/some_class.php');
This approach has many drawbacks :
It first searches for directories specified in the include paths of php , then looks from the current directory. So many directories are checked.
When a script is included by another script in a different directory , its base directory changes to that of the including script.
Another issue , is that when a script is being run from cron , it may not have its parent directory as the working directory.
So its a good idea to have absolute paths :
define('ROOT' , '/var/www/project/');require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code
Now this is an absolute path and will always stay constant. But we can improve this further. The directory /var/www/project can change , so do we change it everytime ? No instead we make it portable using magic constants like __FILE__ . Take a closer look :
//suppose your script is /var/www/project/index.php//Then __FILE__ will always have that full path.define('ROOT' , pathinfo(__FILE__, PATHINFO_DIRNAME));require_once(ROOT . 'http://www.cnblogs.com/lib/some_class.php');//rest of the code
So now even if you shift your project to a different directory , like moving it to an online server , the same code will run without any changes.
Your script could be including various files on top , like class libraries , files for utility and helper functions etc like this :
require_once('lib/Database.php');require_once('lib/Mail.php');require_once('helpers/utitlity_functions.php');
This is rather primitive. The code needs to be more flexible. Write up helper functions to include things more easily. Lets take an example :
function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); require_once( $path ); }load_class('Database');load_class('Mail');
See any difference ? You must. It does not need any more explanation. You can improve this further if you wish to like this :
function load_class($class_name){ //path to the class file $path = ROOT . '/lib/' . $class_name . '.php'); if(file_exists($path)) { require_once( $path ); }}
There are a lot of things that can be done with this :
Search multiple directories for the same class file. Change the directory containing class files easily , without breaking the code anywhere. Use similar functions for loading files that contain helper functions , html content etc.
During development we echo database queries , dump variables which are creating problems , and then once the problem is solved , we comment them or erase them. But its a good idea to let everything stay and help in the long run
On your development machine you can do this :
define('ENVIRONMENT' , 'development');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } }
And on the server you can do this :
define('ENVIRONMENT' , 'production');if(! $db->query( $query ){ if(ENVIRONMENT == 'development') { echo "$query failed"; } else { echo "Database error. Please contact administrator"; } }
Status messages are those messages that are generated after doing a task.
<?phpif($wrong_username || $wrong_password){ $msg = 'Invalid username or password';}?><html><body><?php echo $msg; ?><form>...</form></body></html>
Code like that is common. Using variables to show status messages has limitations. They cannot be send via redirects (unless you propagate them as GET variables to the next script , which is very silly). In large scripts there might be multiple messages etc.
Best way is to use session to propagate them (even if on same page). For this there has to be a session_start on every page.
function set_flash($msg){ $_SESSION['message'] = $msg;}function get_flash(){ $msg = $_SESSION['message']; unset($_SESSION['message']); return $msg;}
and in your script :
<?phpif($wrong_username || $wrong_password){ set_flash('Invalid username or password');}?><html><body>Status is : <?php echo get_flash(); ?><form>...</form></body></html>
function add_to_cart($item_id , $qty){ $_SESSION['cart'][$item_id] = $qty;}add_to_cart( 'IPHONE3' , 2 );
When adding a single item you use the above function. When adding multiple items , will you create another function ? NO. Just make the function flexible enough to take different kinds of parameters. Have a closer look :
function add_to_cart($item_id , $qty){ if(!is_array($item_id)) { $_SESSION['cart'][$item_id] = $qty; } else { foreach($item_id as $i_id => $qty) { $_SESSION['cart'][$i_id] = $qty; } }}add_to_cart( 'IPHONE3' , 2 );add_to_cart( array('IPHONE3' => 2 , 'IPAD' => 5) );
So now the same function can accept different kinds of output. The above can be applied in lots of places to make your code more agile.
I wonder why this tip is omitted from so many blog posts on php tips.
<?phpecho "Hello";//Now dont close this tag
This will save you lots of problem. Lets take an example :
A class file super_class.php
<?phpclass super_class{ function super_function() { //super code }}?>//super extra character after the closing tag
Now index.php
require_once('super_class.php');//echo an image or pdf , or set the cookies or session data
And you will get Headers already send error. Why ? because the "super extra character" has been echoed , and all headers went along with that. Now you start debugging. You may have to waste many hours to find the super extra space.
Hence make it a habit to omit the closing tag :
<?phpclass super_class{ function super_function() { //super code }}//No closing tag
Thats better.
This is called output buffering. Lets say you have been echoing content from different functions like this :
function print_header(){ echo "<div id='header'>Site Log and Login links</div>";}function print_footer(){ echo "<div id='footer'>Site was made by me</div>";}print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}print_footer();
Instead of doing like that , first collect all output in one place. You can either store it inside variables in the functions or use ob_start and ob_end_clean. So now it should look like
function print_header(){ $o = "<div id='header'>Site Log and Login links</div>"; return $o;}function print_footer(){ $o = "<div id='footer'>Site was made by me</div>"; return $o;}echo print_header();for($i = 0 ; $i < 100; $i++){ echo "I is : $i <br />';}echo print_footer();
So why should you do output buffering :
Lets echo some xml.
$xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataecho $xml;
Works fine. But it needs some improvement.
$xml = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>';$xml = "<response> <code>0</code></response>";//Send xml dataheader("content-type: text/xml");echo $xml;
Note that header line. That line tells the browser that the content is xml content. So the browser can handle it correctly. Many javascript libraries also rely on header information.
Similarly for javascript , css , jpg image , png image :
Javascript
header("content-type: application/x-javascript");echo "var a = 10";
CSS
header("content-type: text/css");echo "#div id { background:#000; }";
Ever faced a problem that unicode/utf-8 characters are stored in mysql table correctly , phpmyadmin also shows them correct , but when you fetch them and echo on your page they do not show up correctly. The secret is mysql connection collation.
$host = 'localhost';$username = 'root';$password = 'super_secret';//Attempt to connect to database$c = mysqli_connect($host , $username, $password); //Check connection validityif (!$c) { die ("Could not connect to the database host: <br />". mysqli_connect_error());} //Set the character set of the connectionif(!mysqli_set_charset ( $c , 'UTF8' )){ die('mysqli_set_charset() failed');}
Once you connect to the database , its a good idea to set the connections characterset. This is a must when you are working with multiple languages in your application.
Otherwise what will happen ? You will see lots of boxes and ???????? in non english text.
Prior to php 5.4 the default character encoding used is ISO-8859-1 which cannot display characters like À â etc.
$value = htmlentities($this->value , ENT_QUOTES , 'UTF-8');
Php 5.4 onwards the default encoding will be UTF-8 which will solve most problems , but still better be aware about it if your application is multilingual.
Thinking of using ob_gzhandler ? No dont do that. It doesnt make sense. Php is supposed to write your application. Dont worry about how to optimise data transfer between server and browser inside Php.
Use apache mod_gzip/mod_deflate to compress content via the .htaccess file.
There are times when some javascript code is generated dynamically from php.
$images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = '';foreach($images as $image){$js_code .= "'$image' ,";}$js_code = 'var images = [' . $js_code . ']; ';echo $js_code;//Output is var images = ['myself.png' ,'friends.png' ,'colleagues.png' ,];
Be smart. use json_encode :
$images = array( 'myself.png' , 'friends.png' , 'colleagues.png');$js_code = 'var images = ' . json_encode($images);echo $js_code;//Output is : var images = ["myself.png","friends.png","colleagues.png"]
Isn't that neat ?
Before writing or saving any file , make sure you check that the directory is writable or not , and flash an error message if it is not. This will save you a lot of "debugging" time. When you are working on a linux , permissions have to be dealt with and there would be many many permission issues when directories would not be writable , files would not be readable and so on.
Make sure that your application is as intelligent as possible and reports the most important information in the shortest time.
$contents = "All the content";$file_path = "/var/www/project/content.txt";file_put_contents($file_path , $contents);
That is totally correct. But has some indirect problems. The file_put_contents may fail for a number of reasons :
So its better to make everything clear before writing out to a file.
$contents = "All the content";$dir = '/var/www/project';$file_path = $dir . "/content.txt";if(is_writable($dir)){ file_put_contents($file_path , $contents);}else{ die("Directory $dir is not writable, or does not exist. Please check");}
By doing this you get the accurate information that where is a file write failing and why
When working in linux environment , permission handling can waste a lot of your time. Hence whenever your php application creates some files do a chmod over them to ensure they are "accessible" outside. Otherwise for example the files may be created by "php" user and you are working as a different user and the system wont let you access or open the file , and then you have to struggle to get root privileges , change the permissions of the file and so on.
// Read and write for owner, read for everybody elsechmod("/somedir/somefile", 0644);// Everything for owner, read and execute for otherschmod("/somedir/somefile", 0755);
if($_POST['submit'] == 'Save'){ //Save the things}
The above is mostly correct , except when your application is multi-lingual. Then the 'Save' can be many different things. How would you compare then. So do not rely on the value of submit button. Instead use this :
if( $_SERVER['REQUEST_METHOD'] == 'POST' and isset($_POST['submit']) ){ //Save the things}
Now you are free from the value the submit button
//Delay for some timefunction delay(){ $sync_delay = get_option('sync_delay'); echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";}
Instead use static variables as :
//Delay for some timefunction delay(){ static $sync_delay = null; if($sync_delay == null) { $sync_delay = get_option('sync_delay'); } echo "<br />Delaying for $sync_delay seconds..."; sleep($sync_delay); echo "Done <br />";}
Some simple examples are :
$_SESSION['username'] = $username;$username = $_SESSION['username'];
But this has a problem. If you are running multiple applications on the same domain , the session variables my conflict. 2 different applications may set the same key name in the session variable. Take for example , a frontend portal , and the backend management application , on the same domain.
Hence use application specific keys with wrapper functions :
define('APP_ID' , 'abc_corp_ecommerce');//Function to get a session variablefunction session_get($key){ $k = APP_ID . '.' . $key; if(isset($_SESSION[$k])) { return $_SESSION[$k]; } return false;}//Function set the session variablefunction session_set($key , $value){ $k = APP_ID . '.' . $key; $_SESSION[$k] = $value; return true;}
So you have a lot of utility functions in a file like :
function utility_a(){ //This function does a utility thing like string processing}function utility_b(){ //This function does nother utility thing like database processing}function utility_c(){ //This function is ...}
And you use the function throughout your application freely. You may want to wrap them into a class as static functions :
class Utility{ public static function utility_a() { } public static function utility_b() { } public static function utility_c() { }}//and call them as $a = Utility::utility_a();$b = Utility::utility_b();
One clear benefit you get here is if php has inbuilt functions with similar names , then names will not conflict. Another perspective , though little advanced is that you can maintain multiple versions of the same class in the same application without any conflict. Its basically encapsulation , nothing else.
if($a == true) $a_count++;
Its absolutely a WASTE.
Write
if($a == true){ $a_count++;}
Dont try to make your code shorter by eating up syntax. Rather make your logic shorter.
Lets say you want to trim all elements of an array. Newbies do it like this :
foreach($arr as $c => $v){ $arr[$c] = trim($v);}
But it can more cleaner with array_map :
$arr = array_map('trim' , $arr);
This will apply trim on all elements of the array $arr. Another similar function is array_walk. Check out the documentation on these to know more.
Have you been using to regex to validate values like email , ip address etc. Yes everybody had been doing that. Now lets try something different, called filters.
The php filter extension provides simple way to validate or check values as being a valid 'something'.
$amount = intval( $_GET['amount'] );$rate = (int) $_GET['rate'];
Its a good habit.
set_error_handler() can be used to set a custom error handler. A good idea would be write some important errors in a file for logging purpose
Large arrays or strings , if a variable is holding something very large in size then handle with care. Common mistake is to create a copy and then run out of memory and get a Fatal Error of Memory size exceeded :
$db_records_in_array_format; //This is a big array holding 1000 rows from a table each having 20 columns , every row is atleast 100 bytes , so total 1000 * 20 * 100 = 2MB$cc = $db_records_in_array_format; //2MB moresome_function($cc); //Another 2MB ?
The above thing is common when importing a csv file or exporting table to a csv file
Doing things like above can crashs scripts quite often due to memory limits. For small sized variables its not a problem , but must be avoided when handling large arrays.
Consider passing them by reference , or storing them in a class variable :
$a = get_large_array();pass_to_function(&$a);
by doing this the same variable (and not its copy) will be available to the function. Check documentation
class A{ function first() { $this->a = get_large_array(); $this->pass_to_function(); } function pass_to_function() { //process $this->a }}
unset them as soon as possible , so that memory is freed and rest of the script can relax.
Here is a simple demonstration of how assign by reference can save memory in some cases
<?phpini_set('display_errors' , true);error_reporting(E_ALL);$a = array();for($i = 0; $i < 100000 ; $i++){ $a[$i] = 'A'.$i;}echo 'Memory usage in MB : '. memory_get_usage() / 1000000 . '<br />';$b = $a;$b[0] = 'B';echo 'Memory usage in MB after 1st copy : '. memory_get_usage() / 1000000 . '<br />';$c = $a;$c[0] = 'B';echo 'Memory usage in MB after 2st copy : '. memory_get_usage() / 1000000 . '<br />';$d =& $a;$d[0] = 'B';echo 'Memory usage in MB after 3st copy (reference) : '. memory_get_usage() / 1000000 . '<br />';
The output on a typical php 5.4 machine is :
Memory usage in MB : 18.08208 Memory usage in MB after 1st copy : 27.930944 Memory usage in MB after 2st copy : 37.779808 Memory usage in MB after 3st copy (reference) : 37.779864
So it can be seen that in the 3rd copy which was by reference memory was saved. Otherwise in all plain copies memory is used up more and more.
Make sure that you use a single connection to your database throughout your script. Open a connection right in the beginning and use it till the end , and close it at the end. Do not open connections inside functions like this :
function add_to_cart(){ $db = new Database(); $db->query("INSERT INTO cart .....");}function empty_cart(){ $db = new Database(); $db->query("DELETE FROM cart .....");}
Having multiple connections is a bad idea and moreover they slow down the execution since every connection takes time to create and uses more memory.
Use the singleton pattern for special cases like database connection.
$query = "INSERT INTO users(name , email , address , phone) VALUES('$name' , '$email' , '$address' , '$phone')";$db->query($query); //call to mysqli_query()
The above is the simplest way way of writing sql queries and interacting with databases for operations like INSERT, UPDATE, DELETE etc. But it has few drawbacks like:
Solution: ActiveRecord
It involves writing simple functions that abstract the generation of sql queries, hence avoid writing of direct sql queries.
A very simple example of an activerecord insert function can be like this :
function insert_record($table_name , $data){ foreach($data as $key => $value) { //mysqli_real_escape_string $data[$key] = $db->mres($value); } $fields = implode(',' , array_keys($data)); $values = "'" . implode("','" , array_values($data)) . "'"; //Final query $query = "INSERT INTO {$table}($fields) VALUES($values)"; return $db->query($query);}//data to be inserted in database$data = array('name' => $name , 'email' => $email , 'address' => $address , 'phone' => $phone);//perform the INSERT queryinsert_record('users' , $data);
The above example shows how to insert data in a database, without actually having to write INSERT statements. The function insert_record takes care of escaping data as well. A big advantage here is that since the data is being prepared as a php array, any syntax mistake is caught instantly (by the php interpreter ofcourse).
This function can be part of a database class, and callable like this $db->insert_record(). Similar functions can be written for update, select, delete as well. Should be a good practise.
Pages that are generated by fetching content from the database like cms etc, can be cached. It means that once generated, a copy of it can be writted to file. Next time the same page is requested, then fetch it from the cache directory, dont query the database again.
Benefits :
File based sessions have many limitation. Applications using file based sessions cannot scale to multiple servers, since files are stored on a single server. But database can be access from multiple servers hence the the problem is solved there. Also on shared hosting, the session files reside in the tmp directory, which is readable by other accounts. This can be a security issue.
Storing session in database makes many other things easier like:
Quick example :
<head> <base href="http://www.domain.com/store/"></head><body> <img src="/static/imghw/default1.png" data-src="happy.jpg" class="lazy" / alt="40+ Useful Php tips for beginners ? Part 1" ></body></html>
The base tag is like a 'ROOT' url for all relative urls in the html body. Its useful when static content files are organised into directories and subdirectories.
Lets take an example
www.domain.com/store/home.php www.domain.com/store/products/ipad.php
In home.php the following can be written :
<a href="home.php">Home</a><a href="products/ipad.php">Ipad</a>
But in ipad.php the links have to be like this :
<a href="../home.php">Home</a><a href="ipad.php">Ipad</a>
This is because of different directories. For this multiple versions of the navigation html code has to be maintained. So the quick solution is base tag.
Now this particular code will work the same way in the home directory as well as the product directory. The base href value is used to form the full url for home.php and products/ipad.php
error_reporting is the function to use to set the necessary level of error reporting required. On a development machine notices and strict messages may be disabled by doing.
ini_set('display_errors', 1);error_reporting(~E_NOTICE & ~E_STRICT);
On production , the display should be disabled.
ini_set('display_errors', 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);
It is important to note that error_reporting should never be set to 0 on production machines. Atleast E_FATALs have to be known. Just switch off the display using the display_errors directive. If error_reporting is set to 0, errors wont be raised at all keeping all problems in the dark.
After the display is switched off, the errors should be logged to a file for later analysis. This can be done inside the script using init_set.
ini_set('log_errors' , '1');ini_set('error_log' , '/path/to/errors.txt');ini_set('display_errors' , 0);error_reporting(~E_WARNING & ~E_NOTICE & ~E_STRICT);
Note :
1. The path '/path/to/errors.txt' should be writable by the web server for errors to be logged there.
2. A separate error file is specified , otherwise all logs would go inside the apache/web server error log and get mixed up with other apache errors.
3. Also since it is being setup in the current application , the error log will contain the errors of only the current application (there may be other applications running on the webserver).
4. The path can be somewhere inside the directory of the current application as well , so that the system directories like /var/log dont have to searched.
5. Dont set error_reporting to 0. It will not log anything then.
Alternatively set_error_handler should be used to set a custom user written function as the error handler. That particular function, for example can log all errors to a file.
Set 'display_errors=On' in php.ini on development machine
On development machine its important to enable display_errors right in the php.ini (and not rely on ini_set) This is because any compile time fatal errors will now allow ini_set to execute , hence no error display and a blank WHITE page.
Similarly when they are On in php.ini , switching it off in a script that has fatal errors will not work.
Set 'display_errors=Off' in php.ini on production machine
Do not rely on init_set('display_errors' , 0); simply because it will not get executed if any compile time fatal errors come in the script , and errors will be displayed right away.
The length of integers is different on 32 and 64 bit architectures. So functions like strtotime give different results.
On a 64 bit machine you can see such output.
$ php -aInteractive shellphp > echo strtotime("0000-00-00 00:00:00");-62170005200php > echo strtotime('1000-01-30');-30607739600php > echo strtotime('2100-01-30');4104930600
But on a 32 bit machine all of them would give bool(false). Check here for more.
What would happen if an integer is left shifted more than 32 bits ? the result would be different on different machines.
If you are limiting the maximum run-time of a script , by doing this :
set_time_limit(30);//Rest of the code
It may not always work. Any execution that happens outside the script via system calls/os functions like socket operations, database operations etc. will not be under control of set_time_limit.
So if a database operation takes lot of time or "hangs" then the script will not stop. Dont be surprised then. Make better strategies to handle the run-time.
system , exec , passthru , shell_exec are the 4 functions that are available to execute system commands. Each has a slightly different behaviour. But the problem is that when you are working on shared hosting environments some of the functions are selectively disabled. Most newbie programmers tend to first find out which function is enabled and then use it.
A better solution :
/** Method to execute a command in the terminal Uses : 1. system 2. passthru 3. exec 4. shell_exec*/function terminal($command){ //system if(function_exists('system')) { ob_start(); system($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //passthru else if(function_exists('passthru')) { ob_start(); passthru($command , $return_var); $output = ob_get_contents(); ob_end_clean(); } //exec else if(function_exists('exec')) { exec($command , $output , $return_var); $output = implode("\n" , $output); } //shell_exec else if(function_exists('shell_exec')) { $output = shell_exec($command) ; } else { $output = 'Command execution not possible on this system'; $return_var = 1; } return array('output' => $output , 'status' => $return_var);}terminal('ls');
The above function will execute the shell command using whichever function is available , keeping your code consistent.
Localise your php application. Format dates and numbers with commas and decimals. Show the time according to timezone of the user.
Profilers are used to generate reports that show the time is taken by different parts of the code to execute. When writing large application where lots of libraries and other resources are working to do a cetain task, speed might be an important aspect to optimise.
Use profilers to check how your code is performing in terms of speed. Check out xdebug and webgrind.
An application often needs more than what can be coded with basic php. Like generating pdf files, processing images, sending emails, generating graphs and documents etc. And there are lots of libraries out there for doing these things quickly and easily.
Few popular libraries are :
If you really want to achieve optimisation at the level of microtime then check phpbench ... it has some benchmarks for various syntax variations that can create significant difference.
Its time to start using an MVC (Model view controller) framework like codeigniter. MVC does not make your code object oriented rightaway. The first thing they do is separate the php code from html code.
The php documentation website has entries for each function, class and their methods. All those individual pages have got lots of user comments below them that contain a whole lot of valuable information from the community.
They contain user feedback, expert advice and useful code snippets. So check them out.
The irc channel #php is the best place online to ask about php related things. Although there are lots of blogs, forums out there and even more coming up everyday, still when a specific problem arises the solution might not be available there. Then irc is the place to ask. And its totally free!!
Reading other open source applications is always a good idea to improve own skills if you have not already. Things to learn are techniques, coding style, comment style, organisation and naming of files etc.
The first open source thing that I read was the codeigniter framework. Its easy to developers to use, as well as easy to look inside. Here are a few more
1. Codeigniter 2. WordPress 3. Joomla CMS
If you are already developing on windows, then you might give Linux a try. My favorite is ubuntu. Although this is just an opinion but still I strongly feel that for development linux is a much better environment.
Php applications are mostly deployed on linux (LAMP) environments. Therefore, developing in a similar environment helps to produce a robust application faster.
Most of the development tools can be very easily installed from synaptic package manager in Ubuntu. Plus they need very little configuration to setup and run. And the best thing is, that they all are free.
免費脫衣服圖片
人工智能驅(qū)動的應(yīng)用程序,用于創(chuàng)建逼真的裸體照片
用于從照片中去除衣服的在線人工智能工具。
AI脫衣機
使用我們完全免費的人工智能換臉工具輕松在任何視頻中換臉!
好用且免費的代碼編輯器
中文版,非常好用
功能強大的PHP集成開發(fā)環(huán)境
視覺化網(wǎng)頁開發(fā)工具
神級代碼編輯軟件(SublimeText3)
tosecurelyhandleauthenticationandationallizationInphp,lofterTheSesteps:1.AlwaysHashPasswordSwithPassword_hash()andverifyusingspasspassword_verify(),usepreparedStatatementStopreventsqlineptions,andStoreSeruserDatain usseruserDatain $ _sessiveferterlogin.2.implementrole-2.imaccessccsccccccccccccccccccccccccc.
要安全處理PHP中的文件上傳,核心在于驗證文件類型、重命名文件并限制權(quán)限。1.使用finfo_file()檢查真實MIME類型,僅允許特定類型如image/jpeg;2.用uniqid()生成隨機文件名,存儲至非Web根目錄;3.通過php.ini和HTML表單限制文件大小,設(shè)置目錄權(quán)限為0755;4.使用ClamAV掃描惡意軟件,增強安全性。這些步驟有效防止安全漏洞,確保文件上傳過程安全可靠。
在PHP中,==與===的主要區(qū)別在于類型檢查的嚴格程度。==在比較前會進行類型轉(zhuǎn)換,例如5=="5"返回true,而===要求值和類型都相同才會返回true,例如5==="5"返回false。使用場景上,===更安全應(yīng)優(yōu)先使用,==僅在需要類型轉(zhuǎn)換時使用。
PHP中使用基本數(shù)學運算的方法如下:1.加法用 號,支持整數(shù)和浮點數(shù),也可用于變量,字符串數(shù)字會自動轉(zhuǎn)換但不推薦依賴;2.減法用-號,變量同理,類型轉(zhuǎn)換同樣適用;3.乘法用*號,適用于數(shù)字及類似字符串;4.除法用/號,需避免除以零,并注意結(jié)果可能是浮點數(shù);5.取模用%號,可用于判斷奇偶數(shù),處理負數(shù)時余數(shù)符號與被除數(shù)一致。正確使用這些運算符的關(guān)鍵在于確保數(shù)據(jù)類型清晰并處理好邊界情況。
是的,PHP可以通過特定擴展或庫與MongoDB和Redis等NoSQL數(shù)據(jù)庫交互。首先,使用MongoDBPHP驅(qū)動(通過PECL或Composer安裝)創(chuàng)建客戶端實例并操作數(shù)據(jù)庫及集合,支持插入、查詢、聚合等操作;其次,使用Predis庫或phpredis擴展連接Redis,執(zhí)行鍵值設(shè)置與獲取,推薦phpredis用于高性能場景,Predis則便于快速部署;兩者均適用于生產(chǎn)環(huán)境且文檔完善。
TostaycurrentwithPHPdevelopmentsandbestpractices,followkeynewssourceslikePHP.netandPHPWeekly,engagewithcommunitiesonforumsandconferences,keeptoolingupdatedandgraduallyadoptnewfeatures,andreadorcontributetoopensourceprojects.First,followreliablesource
PHPbecamepopularforwebdevelopmentduetoitseaseoflearning,seamlessintegrationwithHTML,widespreadhostingsupport,andalargeecosystemincludingframeworkslikeLaravelandCMSplatformslikeWordPress.Itexcelsinhandlingformsubmissions,managingusersessions,interacti
tosetTherightTimeZoneInphp,restate_default_timezone_set()functionAtthestArtofyourscriptWithavalIdidentIdentifiersuchas'america/new_york'.1.usedate_default_default_timezone_set_set()