<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>php snippets Archives - BinaryTides</title>
	<atom:link href="https://www.binarytides.com/tag/php-snippets-2/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.binarytides.com/tag/php-snippets-2/</link>
	<description>News, Technology, Entertainment and more</description>
	<lastBuildDate>Fri, 13 Jan 2023 08:58:04 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.2</generator>
	<item>
		<title>Validate domain name using filter_var function in php</title>
		<link>https://www.binarytides.com/validate-domain-name-filter_var-function-php/</link>
					<comments>https://www.binarytides.com/validate-domain-name-filter_var-function-php/#comments</comments>
		
		<dc:creator><![CDATA[Silver Moon]]></dc:creator>
		<pubDate>Thu, 21 Mar 2013 12:24:11 +0000</pubDate>
				<category><![CDATA[Php Snippets]]></category>
		<category><![CDATA[php snippets]]></category>
		<guid isPermaLink="false">http://www.codekites.com/?p=4280</guid>

					<description><![CDATA[<p>The filter_var function of php is capable of validating many things like emails, urls, ip addresses etc. It does not have a direct option to validate a domain name however. So I coded up this little snippet that the filter_var function with a little tweak so that it can validate domain names as well. function... <span class="read-more"><a href="https://www.binarytides.com/validate-domain-name-filter_var-function-php/">Read More &#187;</a></span></p>
<p>The post <a href="https://www.binarytides.com/validate-domain-name-filter_var-function-php/">Validate domain name using filter_var function in php</a> appeared first on <a href="https://www.binarytides.com">BinaryTides</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.binarytides.com/validate-domain-name-filter_var-function-php/feed/</wfw:commentRss>
			<slash:comments>7</slash:comments>
		
		
			</item>
		<item>
		<title>How to download a file using Curl in PHP &#8211; Code Snippet</title>
		<link>https://www.binarytides.com/download-a-file-using-curl-in-php/</link>
					<comments>https://www.binarytides.com/download-a-file-using-curl-in-php/#comments</comments>
		
		<dc:creator><![CDATA[Silver Moon]]></dc:creator>
		<pubDate>Tue, 19 Mar 2013 12:08:03 +0000</pubDate>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Php Snippets]]></category>
		<category><![CDATA[curl]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php snippets]]></category>
		<guid isPermaLink="false">http://www.codekites.com/?p=4276</guid>

					<description><![CDATA[<p>Download a File using Curl Here is a quick curl snippet for php, that can download a remote file and save it. &#60;?php set_time_limit(0); // File to save the contents to $fp = fopen (&#039;files2.tar&#039;, &#039;w+&#039;); $url = &#34;http://localhost/files.tar&#34;; // Here is the file we are downloading, replace spaces with %20 $ch = curl_init(str_replace(&#34; &#34;,&#34;%20&#34;,$url));... <span class="read-more"><a href="https://www.binarytides.com/download-a-file-using-curl-in-php/">Read More &#187;</a></span></p>
<p>The post <a href="https://www.binarytides.com/download-a-file-using-curl-in-php/">How to download a file using Curl in PHP &#8211; Code Snippet</a> appeared first on <a href="https://www.binarytides.com">BinaryTides</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.binarytides.com/download-a-file-using-curl-in-php/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>Fill text templates using arrays in php</title>
		<link>https://www.binarytides.com/fill-text-templates-using-arrays-in-php/</link>
					<comments>https://www.binarytides.com/fill-text-templates-using-arrays-in-php/#respond</comments>
		
		<dc:creator><![CDATA[Silver Moon]]></dc:creator>
		<pubDate>Sat, 22 Sep 2012 12:12:35 +0000</pubDate>
				<category><![CDATA[Php Snippets]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php snippets]]></category>
		<category><![CDATA[web development]]></category>
		<guid isPermaLink="false">http://www.binarytides.com/?p=3047</guid>

					<description><![CDATA[<p>Text templates are often used to generate content like notification emails, invoices filled with the details of a customer or user. The best example would be a bulk email program that sends out emails to multiple users filling the details of the particular user in every individual mail. Text templates have place holders for fields... <span class="read-more"><a href="https://www.binarytides.com/fill-text-templates-using-arrays-in-php/">Read More &#187;</a></span></p>
<p>The post <a href="https://www.binarytides.com/fill-text-templates-using-arrays-in-php/">Fill text templates using arrays in php</a> appeared first on <a href="https://www.binarytides.com">BinaryTides</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.binarytides.com/fill-text-templates-using-arrays-in-php/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
