XWare Поиск по информационным ресурсам МГУ English Russian
       
       Точная форма слов   О проекте   Сайты   Помощь
Поиск по:old.master.cmc.msu.ru   - Поискать по всем серверам
На этой странице приведены все страницы сервера old.master.cmc.msu.ru ,которые мы индексируем. Показаны документы 3001 - 3020 из 3519.

В начало ] Пред. | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | След.В конец ]

Упорядочить по: URL  |  дате изменения
3001. cpdf_arc
... 3.0.8 - 3.0.18 only, PHP 4 >= 4.0.0) cpdf_arc -- Draws an arc . void cpdf_arc ( int pdf document, float x-coor, float y-coor, float radius, float start, float end [, int mode]) . The cpdf_arc() function draws an arc with center at point ( x-coor , y-coor ) and radius radius , starting at angle start and ending at angle end . The optional parameter mode determines the unit length. If it's 0 or omitted the default unit as specified for the page is used. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.cpdf-arc.html -- 4.0 Кб -- 03.02.2002
Похожие документы

3002. cpdf_add_annotation
... Next . 3.0.12 - 3.0.18 only, PHP 4 >= 4.0.0) cpdf_add_annotation -- Adds annotation . void cpdf_add_annotation ( int pdf document, float llx, float lly, float urx, float ury, string title, string content [, int mode]) . The cpdf_add_annotation() adds a note with the lower left corner at ( llx , lly ) and the upper right corner at ( urx , ury ). The optional parameter mode determines the unit length. If it's 0 or omitted the default unit as specified for the page is used. ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.cpdf-add-annotation.html -- 3.9 Кб -- 03.02.2002
Похожие документы

3003. Class/Object Functions
... These functions allow you to obtain information about classes and instance objects. ... pre ?php include classes.inc ; // utility functions function print_vars($ obj ) { $arr = get_ object _vars($ obj ); while (list($prop, $val) = each($arr)) echo \t$prop = $val\n ; } function print_methods($ obj ) { $arr = get_ class _methods(get_ class ($ obj )); foreach ($arr as $method) echo \tfunction $method()\n ; } function class _parentage($ obj , $ class ) { global $$ ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/ref.classobj.html -- 9.3 Кб -- 03.02.2002
Похожие документы

3004. is_subclass_of
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.0) is_subclass_of -- Returns true if the object has this class as one of its parents . bool is_subclass_of ( object object, string class_name) . This function returns TRUE if the object object , belongs to a class which is a subclass of class_name , FALSE otherwise. See also get_class() , get_parent_class() and is_a() . Prev . Home . Next . is_a . Up . method_exists
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.is-subclass-of.html -- 3.8 Кб -- 03.02.2002
Похожие документы

3005. method_exists
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.0) method_exists -- Checks if the class method exists . bool method_exists ( object object, string method_name) . This function returns TRUE if the method given by method_name has been defined for the given object , FALSE otherwise. Prev . Home . Next . is_subclass_of . Up . ClibPDF functions
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.method-exists.html -- 3.4 Кб -- 03.02.2002
Похожие документы

3006. get_parent_class
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.0) get_parent_class -- Retrieves the parent class name for object or class . string get_parent_class ( mixed obj) . If obj is an object, returns the name of the parent class of the class of which obj is an instance. If obj is a string, returns the name of the parent class of the class with that name. This functionality was added in PHP 4.0.5. See also get_class() and is_subclass_of() . Prev . Home . Next . get_object_vars . Up . is_a
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.get-parent-class.html -- 3.8 Кб -- 03.02.2002
Похожие документы

3007. is_a
. PHP Manual . Prev . Next . (unknown) is_a -- Returns true if the object is of this class or has this class as one of its parents . bool is_a ( object object, string class_name) . This function returns TRUE if the object is of this class or has this class as one of its parents, FALSE otherwise. See also get_class() , get_parent_class() and is_subclass_of() . Prev . Home . Next . get_parent_class . Up . is_subclass_of
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.is-a.html -- 3.7 Кб -- 03.02.2002
Похожие документы

3008. get_declared_classes
PHP Manual . Prev . ... PHP 4 >= 4.0.0) get_declared_classes -- Returns an array with the name of the defined classes . array get_declared_classes ( (void);) . This function returns an array of the names of the declared classes in the current script. Note: In PHP 4.0.1pl2, three extra classes are returned at the beginning of the array: stdClass (defined in Zend/zend.c ), OverloadedTestClass (defined in ext/standard/basic_functions.c ) and Directory (defined in ext/standard/dir.c ). ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.get-declared-classes.html -- 4.0 Кб -- 03.02.2002
Похожие документы

3009. get_object_vars
... PHP 4 >= 4.0.0) get_object_vars -- Returns an associative array of object properties . array get_object_vars ( object obj) . ... php class Point2D { var $x, $y; var $ label ; function Point2D ($x, $y) { $this- x = $x; $this- y = $y; } function setLabel($ label ) { $this- label = $ label ; } function getPoint() { return array ( x = $this- x, y = $this- y, label = $this- label ); } } $p1 = new Point2D ( 1.233 , 3.445 ); print_r( get_object_vars ($p1)); // $ ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.get-object-vars.html -- 4.9 Кб -- 03.02.2002
Похожие документы

3010. get_class_methods
PHP Manual . ... PHP 4 >= 4.0.0) get_class_methods -- Returns an array of class methods' names . array get_class_methods ( string class_name) . ... For example: . ... php class myclass { // constructor function myclass() { return(true); } // method 1 function myfunc1() { return(true); } // method 2 function myfunc2() { return(true); } } $my_class = new myclass(); $class_methods = get_class_methods(get_class($my_class)); foreach ($class_methods as $method_name) { echo "$method_name\n"; } ?> ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.get-class-methods.html -- 5.0 Кб -- 03.02.2002
Похожие документы

3011. get_class_vars
PHP Manual . ... PHP 4 >= 4.0.0) get_class_vars -- Returns an array of default properties of the class . array get_class_vars ( string class_name) . ... Example 1. get_class_vars() example . php class myclass { var $var1; // this has no default value... var $var2 = "xyz"; var $var3 = 100; // constructor function myclass() { return(true); } } $my_class = new myclass(); $class_vars = get_class_vars(get_class($my_class)); foreach ($class_vars as $name => $value) { echo "$name : $value\n"; } ?> ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.get-class-vars.html -- 4.9 Кб -- 03.02.2002
Похожие документы

3012. class_exists
. PHP Manual . Prev . Next . (PHP 4 >= 4.0.0) class_exists -- Checks if the class has been defined . bool class_exists ( string class_name) . This function returns TRUE if the class given by class_name has been defined, FALSE otherwise. Prev . Home . Next . call_user_method . Up . get_class
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.class-exists.html -- 3.4 Кб -- 03.02.2002
Похожие документы

3013. get_class
PHP Manual . Prev . Next . PHP 4 >= 4.0.0) get_class -- Returns the name of the class of an object . string get_class ( object obj) . This function returns the name of the class of which the object obj is an instance. Returns FALSE if obj is not an object. Note: get_class() returns a user defined class name in lowercase. A class defined in a PHP extension is returned in its original notation. See also get_parent_class() , get_type() , and is_subclass_of() . ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.get-class.html -- 4.0 Кб -- 03.02.2002
Похожие документы

3014. call_user_method_array
PHP Manual . ... Next . PHP 4 >= 4.0.5) call_user_method_array -- Call a user method given with an array of parameters . mixed call_user_method_array ( string method_name, object obj [, array paramarr]) . Calls a the method referred by method_name from the user defined obj object, using the parameters in paramarr . See also: call_user_func_array() , call_user_func() , call_user_method() . ... Class/Object Functions . ... call_user_method ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.call-user-method-array.html -- 4.0 Кб -- 03.02.2002
Похожие документы

3015. call_user_method
... 3.0.3 - 3.0.18 only, PHP 4 >= 4.0.0) call_user_method -- Call a user method on an specific object . mixed call_user_method ( string method_name, object obj [, mixed parameter [, mixed .. ... An example of usage is below, where we define a class, instantiate an object and use call_user_method() to call indirectly its print_info method. <?php class Country { var $NAME; var $TLD; function Country($name, $tld) { $this->NAME = $name; $this->TLD = $tld; } function print_info($prestr="") { echo $prestr." ...
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.call-user-method.html -- 4.7 Кб -- 03.02.2002
Похожие документы

3016. com_isenum
. PHP Manual . Prev . Next . (PHP 4 >= 4.1.0) com_isenum -- Grabs an IEnumVariant . void com_isenum ( object com_module) . Warning . This function is currently not documented, only the argument list is available. Prev . Home . Next . com_release . Up . com_load_typelib
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.com-isenum.html -- 3.4 Кб -- 03.02.2002
Похожие документы

3017. com_load_typelib
. PHP Manual . Prev . Next . (PHP 4 >= 4.1.0) com_load_typelib -- Loads a Typelib . void com_load_typelib ( string typelib_name [, int case_insensitive]) . Warning . This function is currently not documented, only the argument list is available. Prev . Home . Next . com_isenum . Up . Class/Object Functions
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.com-load-typelib.html -- 3.4 Кб -- 03.02.2002
Похожие документы

3018. COM support functions for Windows
... COM is a technology which allows the reuse of code written in any language (by any language) using a standard calling convention and hiding behind APIs the implementation details such as what machine the Component is stored on and the executable which houses it. ... com_invoke -- Calls a COM component's method. com_propget -- Gets the value of a COM Component's property . ... com_propput -- Assigns a value to a COM component's property . ... com_set -- Assigns a value to a COM component's property ....
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/ref.com.html -- 5.5 Кб -- 03.02.2002
Похожие документы

3019. com_addref
. PHP Manual . Prev . Next . (PHP 4 >= 4.1.0) com_addref -- Increases the components reference counter. void com_addref ( (void);) . Increases the components reference counter. Prev . Home . Next . com_set . Up . com_release
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.com-addref.html -- 3.2 Кб -- 03.02.2002
Похожие документы

3020. com_release
. PHP Manual . Prev . Next . (PHP 4 >= 4.1.0) com_release -- Decreases the components reference counter. void com_release ( (void);) . Decreases the components reference counter. Prev . Home . Next . com_addref . Up . com_isenum
[ Сохраненная копия ]  Ссылки http://old.master.cmc.msu.ru/php/function.com-release.html -- 3.2 Кб -- 03.02.2002
Похожие документы

В начало ] Пред. | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | След.В конец ]

Rambler's Top100 RFBR Яндекс цитирования