Lines Matching refs:p2
41 $p2 = new Phar($fname2);
43 echo 'a: ' , file_get_contents($p2['a']->getPathName());
44 echo 'b: ' ,file_get_contents($p2['b']->getPathName());
45 echo 'c: ' ,file_get_contents($p2['c']->getPathName()), $p2['c']->getMetaData(), "\n";
48 $p2->copy('notexisting', 'another');
53 $p2->copy('a', 'b');
57 $p2['a']->compress(Phar::GZ);
58 $p2->copy('a', 'd');
59 echo $p2['d']->getContent() . "\n";
61 $p2->copy('d', '.phar/stub.php');
66 $p2->copy('.phar/stub.php', 'd');