<?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</title>
	<atom:link href="https://www.codefieber.de/programmierung/php-programmierung/feed" rel="self" type="application/rss+xml" />
	<link>https://www.codefieber.de/programmierung/php-programmierung</link>
	<description>IT-Blog</description>
	<lastBuildDate>Sun, 18 Apr 2021 10:15:57 +0000</lastBuildDate>
	<language>de</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.1</generator>
	<item>
		<title>WebStorm Debug CORS Fehlermeldung</title>
		<link>https://www.codefieber.de/programmierung/webstorm-debug-cors-fehlermeldung-5111?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=webstorm-debug-cors-fehlermeldung</link>
					<comments>https://www.codefieber.de/programmierung/webstorm-debug-cors-fehlermeldung-5111#respond</comments>
		
		<dc:creator><![CDATA[Pascal]]></dc:creator>
		<pubDate>Wed, 10 Feb 2021 17:41:35 +0000</pubDate>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programmierung]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[cors]]></category>
		<category><![CDATA[debug]]></category>
		<category><![CDATA[WebStorm]]></category>
		<guid isPermaLink="false">https://www.codefieber.de/?p=5111</guid>

					<description><![CDATA[<p><a href="https://www.codefieber.de/programmierung/webstorm-debug-cors-fehlermeldung-5111">WebStorm Debug CORS Fehlermeldung</a></p>
<p>Wer im WebStorm seine JavaScript-Anwendung über den Chrome-Browser (oder auch Microsoft EDGE o.ä.) debuggen möchte, die Zugriff auf eine Datenbank über den localhost hat, könnte folgende Fehlermeldungen erhalten: Access to XMLHttpRequest at '...' from origin '...' has been blocked by &#8230; <a href="https://www.codefieber.de/programmierung/webstorm-debug-cors-fehlermeldung-5111">Weiterlesen <span class="meta-nav">&#8594;</span></a></p>
<p><a href="https://www.codefieber.de">Codefieber.de</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.codefieber.de/programmierung/webstorm-debug-cors-fehlermeldung-5111/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Files in PHP öffnen</title>
		<link>https://www.codefieber.de/programmierung/files-in-php-oeffnen-1063?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=files-in-php-oeffnen</link>
					<comments>https://www.codefieber.de/programmierung/files-in-php-oeffnen-1063#respond</comments>
		
		<dc:creator><![CDATA[Pascal]]></dc:creator>
		<pubDate>Wed, 12 Sep 2012 10:08:24 +0000</pubDate>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programmierung]]></category>
		<guid isPermaLink="false">http://pb-software.pf-control.de/wordpress/?p=1063</guid>

					<description><![CDATA[<p><a href="https://www.codefieber.de/programmierung/files-in-php-oeffnen-1063">Files in PHP öffnen</a></p>
<p>Files in PHP öffnen &#8211; Eine kleine Anleitung Wenn man ein Verzeichnis nach Dateien mit PHP auslesen und in einem Array schreiben möchte, kann man nachfolgenden Code verwenden: if ($handle = opendir($path)) { while (false !== ($file = readdir($handle))) { &#8230; <a href="https://www.codefieber.de/programmierung/files-in-php-oeffnen-1063">Weiterlesen <span class="meta-nav">&#8594;</span></a></p>
<p><a href="https://www.codefieber.de">Codefieber.de</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.codefieber.de/programmierung/files-in-php-oeffnen-1063/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Aktuelles Arbeitsverzeichnis mit PHP auslesen</title>
		<link>https://www.codefieber.de/programmierung/aktuelles-arbeitsverzeichnis-mit-php-auslesen-1051?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=aktuelles-arbeitsverzeichnis-mit-php-auslesen</link>
					<comments>https://www.codefieber.de/programmierung/aktuelles-arbeitsverzeichnis-mit-php-auslesen-1051#respond</comments>
		
		<dc:creator><![CDATA[Pascal]]></dc:creator>
		<pubDate>Wed, 12 Sep 2012 08:28:14 +0000</pubDate>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programmierung]]></category>
		<guid isPermaLink="false">http://pb-software.pf-control.de/wordpress/?p=1051</guid>

					<description><![CDATA[<p><a href="https://www.codefieber.de/programmierung/aktuelles-arbeitsverzeichnis-mit-php-auslesen-1051">Aktuelles Arbeitsverzeichnis mit PHP auslesen</a></p>
<p>Aktuelles Arbeitsverzeichnis mit PHP auslesen &#8211; Den Pfad zur aktuellen index.php auslesen: Das geht mit der Methode &#8220;getcwd();&#8221; $path = getcwd() . "\\"; Ergibt z.b. &#8220;C:\xampp\htdocs\IndexImport\&#8221;</p>
<p><a href="https://www.codefieber.de">Codefieber.de</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.codefieber.de/programmierung/aktuelles-arbeitsverzeichnis-mit-php-auslesen-1051/feed</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
