Lines Matching refs:local
13 $local = media_get_from_URL('http://www.google.com/images/srpr/logo3w.png','png',-1);
24 clearstatcache(false, $local);
25 $this->assertTrue($local !== false);
26 $this->assertFileExists($local);
27 $this->assertEquals($time, filemtime($local));
29 unlink($local);
39 $local = media_get_from_URL('http://www.google.com/images/srpr/logo3w.png','png',0);
53 $this->assertTrue($local !== false);
54 $this->assertFileExists($local);
57 $time = filemtime($local);
58 clearstatcache(false, $local);
62 $local = media_get_from_URL('http://www.google.com/images/srpr/logo3w.png','png',5);
73 clearstatcache(false, $local);
74 $this->assertTrue($local !== false);
75 $this->assertFileExists($local);
76 $this->assertNotEquals($time, filemtime($local));
78 unlink($local);