{"id":209,"date":"2015-08-10T12:05:52","date_gmt":"2015-08-10T12:05:52","guid":{"rendered":"http:\/\/www.eminozlem.com\/?p=209"},"modified":"2015-08-10T12:07:08","modified_gmt":"2015-08-10T12:07:08","slug":"loading-an-array-from-file-into-a-variable","status":"publish","type":"post","link":"https:\/\/eminozlem.com\/tr\/loading-an-array-from-file-into-a-variable\/","title":{"rendered":"Loading an array from file into a variable"},"content":{"rendered":"<p>Ways to load an array from file into a variable:<\/p>\n<p>1-<\/p>\n<pre class=\"lang:php decode:true\">$var = require 'myarray.php'; \/\/ or include\r\n\r\n\/\/ myarray.php contents\r\n\r\nreturn array(\"test\",\"test2\");<\/pre>\n<p>2 &#8211;<\/p>\n<pre class=\"lang:php decode:true\">require 'myarray.php'; \/\/ or include\r\n\r\n\/\/ myarray.php contents\r\n\r\n$var = array(\"test\",\"test2\");<\/pre>\n<p>Use $var as you would normally.<\/p>\n<p>3-<\/p>\n<pre class=\"lang:php decode:true \">$var = file_get_contents('myarray.php');\r\n\r\n\/\/ myarray.php contents\r\n\r\narray(\"test\",\"test2\");<\/pre>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Ways to load an array from file into a variable: 1- $var = require &#8216;myarray.php&#8217;; \/\/ or include \/\/ myarray.php contents return array(&#8220;test&#8221;,&#8221;test2&#8243;); 2 &#8211; require &#8216;myarray.php&#8217;; \/\/ or include \/\/ myarray.php contents $var = array(&#8220;test&#8221;,&#8221;test2&#8243;); Use $var as you would normally. 3- $var = file_get_contents(&#8216;myarray.php&#8217;); \/\/ myarray.php contents array(&#8220;test&#8221;,&#8221;test2&#8243;); &nbsp; &nbsp;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_kad_post_transparent":"","_kad_post_title":"","_kad_post_layout":"","_kad_post_sidebar_id":"","_kad_post_content_style":"","_kad_post_vertical_padding":"","_kad_post_feature":"","_kad_post_feature_position":"","_kad_post_header":false,"_kad_post_footer":false,"_kad_post_classname":"","footnotes":""},"categories":[7],"tags":[12,9,64],"class_list":["post-209","post","type-post","status-publish","format-standard","hentry","category-coding","tag-array","tag-php","tag-variable"],"acf":[],"_links":{"self":[{"href":"https:\/\/eminozlem.com\/tr\/wp-json\/wp\/v2\/posts\/209","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/eminozlem.com\/tr\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/eminozlem.com\/tr\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/eminozlem.com\/tr\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/eminozlem.com\/tr\/wp-json\/wp\/v2\/comments?post=209"}],"version-history":[{"count":0,"href":"https:\/\/eminozlem.com\/tr\/wp-json\/wp\/v2\/posts\/209\/revisions"}],"wp:attachment":[{"href":"https:\/\/eminozlem.com\/tr\/wp-json\/wp\/v2\/media?parent=209"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/eminozlem.com\/tr\/wp-json\/wp\/v2\/categories?post=209"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/eminozlem.com\/tr\/wp-json\/wp\/v2\/tags?post=209"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}