fopen: URLs mit Querystring?!

Einklappen
X
 
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

  • fopen: URLs mit Querystring?!

    hi,

    folgendes problem:

    ich hab ein kleines templatesystem geschrieben, wo ich an einigen stellen php-dateien (liegen btw. auf dem gleichen webspace) einfügen will, nachdem sie ausgeführt wurden. das hab ich mit fread gemacht, was bisher auch immer ging.

    auf einmal bekomme ich aber den fehler:
    Warning: fopen(http://dev.progamerz.com/fansites/_o...r=&view=&page=) [function.fopen]: failed to create stream: Invalid argument in /www/htdocs/develop/global.inc.php on line 423
    line 423 lautet:
    PHP-Code:
    if ($datei fopen($name"r")) { 
    wenn ich das fragezeichen und den querystring ("letter=&view=&page=") weglassen, funktioniert es. wie gesagt, sonst ging es immer mit query.
    php-version ist 4.3.2.

    hat jemand ne idee / weiß jemand, woran das liegen könnte?

  • #2
    ich hab im manual folgendes zu include gefunden:
    PHP-Code:
    <?php 

    /* This example assumes that [url]www.example.com[/url] is configured to parse .php 
    * files and not .txt files. Also, 'Works' here means that the variables 
    * $foo and $bar are available within the included file. */ 

    // Won't work; file.txt wasn't handled by [url]www.example.com[/url] as PHP 
    include 'http://www.example.com/file.txt?foo=1&bar=2'

    // Won't work; looks for a file named 'file.php?foo=1&bar=2' on the 
    // local filesystem. 
    include 'file.php?foo=1&bar=2'

    // Works. 
    include 'http://www.example.com/file.php?foo=1&bar=2'

    $foo 1
    $bar 2
    include 
    'file.txt';  // Works. 
    include 'file.php';  // Works. 

    ?>
    das müsste doch bei fopen() genauso sein!?! unter "Using remote files" hab ich nichts zu dem thema gefunden...

    Kommentar

    Lädt...
    X