Shopware ist ein vielfach ausgezeichnetes Onlineshop-System der shopware AG, das auf PHP. Zend Framework und SQL basiert.
SELFPHP unterstützt Sie als Shopware Solution Partner bei der Konzeption, Programmierung und Realisierung Ihres Onlineshops und passt Shopware bei Bedarf an Ihre Unternehmensbedürfnisse an.
Weitere Informationen
Warning: include_once(): http:// wrapper is disabled in the server configuration by allow_url_include=0 in /var/www/html/_includeSELFPHP/funktionsreferenz.inc.php on line 405
Warning: include_once(http://geoserver.selfphp.com/million-dollar.php?remote_address=172.17.0.1): failed to open stream: no suitable wrapper could be found in /var/www/html/_includeSELFPHP/funktionsreferenz.inc.php on line 405
Warning: include_once(): Failed opening 'http://geoserver.selfphp.com/million-dollar.php?remote_address=172.17.0.1' for inclusion (include_path='.:/usr/local/lib/php') in /var/www/html/_includeSELFPHP/funktionsreferenz.inc.php on line 405
Mit is_readable() kann man überprüfen, ob eine Datei (filename) existiert und lesbar ist. Für den Zugriff auf die Datei verwendet PHP die Benutzer-ID, unter welcher der Webserver läuft.
Wenn die Datei existiert und lesbar ist, gibt diese Funktion true , sonst false zurück.
Beachten Sie bitte, dass das Ergebnis zwischengespeichert (siehe clearstatcache) wird.
if ( is_readable ( $datei ) )
{
echo "Die Datei $datei existiert und ist lesbar";
}
else
{
echo "Die Datei $datei existiert nicht und ist nicht lesbar";
} ?>