|
@@ -957,6 +957,36 @@ extern class Global {
|
|
|
**/
|
|
|
static function spl_object_hash( obj:{} ) : String;
|
|
|
|
|
|
+ /**
|
|
|
+ @see http://php.net/manual/en/function.spl-autoload-call.php
|
|
|
+ **/
|
|
|
+ static function spl_autoload_call( class_name:String ) : Void;
|
|
|
+
|
|
|
+ /**
|
|
|
+ @see http://php.net/manual/en/function.spl-autoload-extensions.php
|
|
|
+ **/
|
|
|
+ static function spl_autoload_extensions( ?file_extensions:String ) : String;
|
|
|
+
|
|
|
+ /**
|
|
|
+ @see http://php.net/manual/en/function.spl-autoload-functions.php
|
|
|
+ **/
|
|
|
+ static function spl_autoload_functions() : EitherType<NativeIndexedArray<Function>,Bool>;
|
|
|
+
|
|
|
+ /**
|
|
|
+ @see http://php.net/manual/en/function.spl-autoload-register.php
|
|
|
+ **/
|
|
|
+ static function spl_autoload_register( ?autoload_function:(className:String)->Void, throw_exception:Bool = true, prepend:Bool = false ) : Bool;
|
|
|
+
|
|
|
+ /**
|
|
|
+ @see http://php.net/manual/en/function.spl-autoload-unregister.php
|
|
|
+ **/
|
|
|
+ static function spl_autoload_unregister( autoload_function:(className:String)->Void ) : Bool;
|
|
|
+
|
|
|
+ /**
|
|
|
+ @see http://php.net/manual/en/function.spl-autoload.php
|
|
|
+ **/
|
|
|
+ static function spl_autoload( class_name:String, ?file_extensions:String ) : Void;
|
|
|
+
|
|
|
/**
|
|
|
@see http://php.net/manual/en/function.utf8-encode.php
|
|
|
**/
|
|
@@ -1375,6 +1405,16 @@ extern class Global {
|
|
|
**/
|
|
|
static function include_once( include_path:String ) : Void;
|
|
|
|
|
|
+ /**
|
|
|
+ @see http://php.net/manual/en/function.set-include-path.php
|
|
|
+ **/
|
|
|
+ static function set_include_path( new_include_path:String ) : String;
|
|
|
+
|
|
|
+ /**
|
|
|
+ @see http://php.net/manual/en/function.get-include-path.php
|
|
|
+ **/
|
|
|
+ static function get_include_path() : String;
|
|
|
+
|
|
|
/**
|
|
|
@see http://php.net/manual/en/function.gzcompress.php
|
|
|
**/
|