Windows NT KAMIDAKI 10.0 build 19045 (Windows 10) AMD64
Apache/2.4.58 (Win64) OpenSSL/3.1.3 PHP/8.3.9
Server IP : 192.168.3.16 & Your IP : 216.73.216.140
Domains :
Cant Read [ /etc/named.conf ]
User : SISTEMA
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
C: /
xampp /
php /
tests /
parseFile /
Delete
Unzip
Name
Size
Permission
Date
Action
File_Find-1.3.0__Find.php
15.29
KB
-rw-rw-rw-
2016-01-27 12:02
PackageUpdate.php
37.05
KB
-rw-rw-rw-
2016-01-27 12:02
conditional.php
970
B
-rw-rw-rw-
2016-01-27 12:02
empty.php
1
B
-rw-rw-rw-
2016-01-27 12:02
ignore_functions_match.php
391
B
-rw-rw-rw-
2016-01-27 12:02
math.php
85
B
-rw-rw-rw-
2016-01-27 12:02
php5_method_chaining.php
912
B
-rw-rw-rw-
2016-01-27 12:02
php5_method_chaining_samp2.php
590
B
-rw-rw-rw-
2016-01-27 12:02
phpweb-entities.php
2.36
KB
-rw-rw-rw-
2016-01-27 12:02
zip.php
446
B
-rw-rw-rw-
2016-01-27 12:02
Save
Rename
<?php /** * This Person class encapsulates a couple of properties which * a person might have: their name and age. * We also give the Person the opportunity to introduce themselves. * * @link http://cowburn.info/php/php5-method-chaining/ */ class Person { var $m_szName; var $m_iAge; function setName($szName) { $this->m_szName = $szName; return $this; // We now return $this (the Person) } function setAge($iAge) { $this->m_iAge = $iAge; return $this; // Again, return our Person } function introduce() { printf('Hello my name is %s and I am %d years old.', $this->m_szName, $this->m_iAge); } } // We'll be creating me, digitally. $peter = new Person(); // Let's set some attributes and let me introduce myself, // all in one line of code. $peter->setName('Peter')->setAge(23)->introduce(); ?>