Searched refs:newstub (Results 1 – 6 of 6) sorted by relevance
23 $newstub = '<?php echo "second stub\n"; _x_HALT_COMPILER(); ?>';26 $phar->setStub($newstub);
22 $newstub = '<?php echo "second stub\n"; _x_HALT_COMPILER(); ?>';25 $phar->setStub($newstub);
25 $newstub = '<?php echo "second stub\n"; _x_HALT_COMPILER(); ?>';28 $phar->setStub($newstub);
970 static const char newstub[] = "<?php // tar-based phar archive stub file\n__HALT_COMPILER();"; in phar_tar_flush() local1115 if (sizeof(newstub)-1 != php_stream_write(entry.fp, newstub, sizeof(newstub)-1)) { in phar_tar_flush()1123 entry.uncompressed_filesize = entry.compressed_filesize = sizeof(newstub) - 1; in phar_tar_flush()
2545 zend_string *newstub; in phar_flush() local2686 newstub = NULL; in phar_flush()2689 newstub = phar_create_default_stub(NULL, NULL, NULL); in phar_flush()2690 phar->halt_offset = ZSTR_LEN(newstub); in phar_flush()2691 written = php_stream_write(newfile, ZSTR_VAL(newstub), phar->halt_offset); in phar_flush()2699 if (newstub) { in phar_flush()2705 if (newstub) { in phar_flush()2706 zend_string_free(newstub); in phar_flush()2710 if (newstub) { in phar_flush()2711 zend_string_free(newstub); in phar_flush()
1227 static const char newstub[] = "<?php // zip-based phar archive stub file\n__HALT_COMPILER();"; in phar_zip_flush() local1376 if (sizeof(newstub)-1 != php_stream_write(entry.fp, newstub, sizeof(newstub)-1)) { in phar_zip_flush()1384 entry.uncompressed_filesize = entry.compressed_filesize = sizeof(newstub) - 1; in phar_zip_flush()
Completed in 31 milliseconds