Lines Matching refs:p2
40 $p2 = new Phar($fname2);
42 echo 'a: ' , file_get_contents($p2['a']->getPathName());
43 echo 'b: ' ,file_get_contents($p2['b']->getPathName());
44 echo 'c: ' ,file_get_contents($p2['c']->getPathName()), $p2['c']->getMetaData(), "\n";
47 $p2->copy('notexisting', 'another');
52 $p2->copy('a', 'b');
56 $p2['a']->compress(Phar::GZ);
57 $p2->copy('a', 'd');
58 echo $p2['d']->getContent() . "\n";
60 $p2->copy('d', '.phar/stub.php');
65 $p2->copy('.phar/stub.php', 'd');