diff options
author | Nasgul <nasguling@gmail.com> | 2015-10-29 22:25:00 +0200 |
---|---|---|
committer | Nasgul <nasguling@gmail.com> | 2015-10-29 22:25:00 +0200 |
commit | eef69b0d092a0b1396ff2494984b07b9aa76d020 (patch) | |
tree | 3608a999e5948bbf29b4f1fd023104f937d849e8 /ru-ru/php-ru.html.markdown | |
parent | f0a4c88acfac9514aca6dd33e2d3f8c4d5e815dc (diff) |
Edit translate for creating object.
Edit translate for creating new object of class using new.
Diffstat (limited to 'ru-ru/php-ru.html.markdown')
-rw-r--r-- | ru-ru/php-ru.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ru-ru/php-ru.html.markdown b/ru-ru/php-ru.html.markdown index dc254bf8..37b6a86e 100644 --- a/ru-ru/php-ru.html.markdown +++ b/ru-ru/php-ru.html.markdown @@ -483,7 +483,7 @@ echo MyClass::MY_CONST; // Выведет 'value'; echo MyClass::$staticVar; // Выведет 'static'; MyClass::myStaticMethod(); // Выведет 'I am static'; -// Новый экземпляр класса используя new +// Создание нового экземпляра класса используя new $my_class = new MyClass('An instance property'); // Если аргументы отсутствуют, можно не ставить круглые скобки |