MCPcopy Create free account
hub / github.com/CopernicaMarketingSoftware/PHP-CPP / Script

Method Script

zend/script.cpp:55–59  ·  view source on GitHub ↗

* Constructor * @param name name of the script * @param script actual PHP code * @param size length of the string */

Source from the content-addressed store, hash-verified

53 * @param size length of the string
54 */
55Script::Script(const char *name, const char *phpcode, size_t size) _NOEXCEPT
56{
57 // construct opcodes
58 _opcodes = new Opcodes(compile(name, phpcode, size));
59}
60
61/**
62 * Destructor

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected