{"id":9401,"date":"2017-06-02T12:16:40","date_gmt":"2017-06-02T06:46:40","guid":{"rendered":"https:\/\/www.carmatec.com\/?p=9401"},"modified":"2022-09-28T13:11:23","modified_gmt":"2022-09-28T13:11:23","slug":"tips-optimizing-php-code","status":"publish","type":"post","link":"https:\/\/www.carmatec.com\/ja\/php\u958b\u767a\/tips-optimizing-php-code\/","title":{"rendered":"PHP \u30b3\u30fc\u30c9\u3092\u6700\u9069\u5316\u3059\u308b\u305f\u3081\u306e\u30d2\u30f3\u30c8"},"content":{"rendered":"

There is no doubt about PHP being one of the most popular and most widely used development language for various websites and applications. Let\u2019s make our development practices much more efficient by using some of the pro-tips, as shared by experienced PHP developers:<\/p>\n

1. When using a loop, if your condition uses a constant, put it before the loop. For instance<\/p>\n

\n
for ($i = 0; $i < count($my_array); $i++)<\/code><\/pre>\n<\/blockquote>\n

This will evaluate count($my_array) every time. Just make an extra variable before the loop, or even inside :<\/p>\n

\n
for ($i = 0, $count = count($my_array); $i < $count; $i++)<\/code><\/pre>\n<\/blockquote>\n

2. echo is better than print.<\/p>\n

echo (‘code’);
\nprint (‘code’);<\/p><\/blockquote>\n

3. Use single quotes ( ‘ ) instead of double quotes(\u201c \u201c\u00a0 ) will make the things faster \u00a0since PHP looks for variables inside double quotes\u00a0but not inside single quotes. if you are going to keep only the string inside it avoiding any variables. Double quotes checks for the presence of variable and adds little bit of overhead.<\/p>\n

4. Use functions outside the loops<\/p>\n

5. Use \u201c= = =\u201d instead of \u201c= =\u201d, as the former strictly checks for a closed range which makes it faster.
\nif, elseif and else (using ===)<\/p>\n

6. Always use curly brackets in control structures, even if they are not needed. They increase the readability of the code, and they give you fewer logical errors.
\nSo, for example, the following is incorrect:<\/p>\n

\n
if ($foo)\n$bar = true\nThis should be formatted like this:\nif ($foo) {\n$bar = true\n}<\/code><\/pre>\n<\/blockquote>\n

7. Avoid string concatenations in loops<\/p>\n

On being placed in a loop, the string concatenation leads to creating many temporary objects and this follows unnecessary use of the garbage collector. Both are straining in terms of memory consumption which can slow down the execution of the script with drastic measures.<\/p>\n

You must be aware that your PHP scripts get recompiled each time in case the scripts are not cached. So, it can be great if you install a PHP caching product for an enhanced performance (the performance typically increases by 25-100%). This is achieved by removing compilation times. OP code caches eliminate the need for you to compile the script on each request.<\/p>\n

8. else if\u201d statements are faster than \u201cswitch\/case\u201d statements.<\/p>\n

9. Use tags when declaring PHP as all other styles are depreciated, including short tags
\n10. $record[\u2019id\u2019] is 7 times faster than $record[id]
\n11. reuse the code<\/p>\n

12.Apache serves the PHP script about 2-10 times slower than any static HTML page, so, it is advisable to focus on using more of the static HTML pages and less of the scripts.<\/p>\n

13. Methods in derived classes run faster than ones defined in the base class.
\n14. Use echo\u2019s multiple parameters instead of string concatenation<\/p>\n

echo ($a1,$a2,$a3)<\/p><\/blockquote>\n

15. str_replace is faster than preg_replace, but strtr is faster than str_replace by a factor of 4.<\/p>\n

At the end, we would like to disclaim that these are only a few good tips that a PHP\u958b\u767a\u8005<\/a> can follow to fine-tune their Development practices and there can be many more ways you can improve upon your skills. With this short write-up, we have tried to capture some that can have the most impact.<\/p>\n

Have more tips to add? Want to learn all about how we approach a PHP project<\/span><\/a><\/span>?
\nFeel free to leave us a comment or
\u304a\u554f\u3044\u5408\u308f\u305b<\/a><\/span>.<\/strong><\/p>","protected":false},"excerpt":{"rendered":"

There is no doubt about PHP being one of the most popular and most widely used development language for various websites and applications. Let\u2019s make our development practices much more efficient by using some of the pro-tips, as shared by experienced PHP developers: 1. When using a loop, if your condition uses a constant, put it before the loop. For instance for ($i = 0; $i < count($my_array); $i++) This will evaluate count($my_array) every time. Just make an extra variable before the loop, or even inside : for ($i = 0, $count = count($my_array); $i < $count; $i++) 2. echo is better than print. echo (‘code’); print (‘code’); 3. Use […]<\/p>","protected":false},"author":1,"featured_media":30890,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[19],"tags":[],"class_list":["post-9401","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-php-development"],"_links":{"self":[{"href":"https:\/\/www.carmatec.com\/ja\/wp-json\/wp\/v2\/posts\/9401","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.carmatec.com\/ja\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.carmatec.com\/ja\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.carmatec.com\/ja\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.carmatec.com\/ja\/wp-json\/wp\/v2\/comments?post=9401"}],"version-history":[{"count":3,"href":"https:\/\/www.carmatec.com\/ja\/wp-json\/wp\/v2\/posts\/9401\/revisions"}],"predecessor-version":[{"id":31560,"href":"https:\/\/www.carmatec.com\/ja\/wp-json\/wp\/v2\/posts\/9401\/revisions\/31560"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.carmatec.com\/ja\/wp-json\/wp\/v2\/media\/30890"}],"wp:attachment":[{"href":"https:\/\/www.carmatec.com\/ja\/wp-json\/wp\/v2\/media?parent=9401"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.carmatec.com\/ja\/wp-json\/wp\/v2\/categories?post=9401"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.carmatec.com\/ja\/wp-json\/wp\/v2\/tags?post=9401"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}