svn: /phpdoc/kr/trunk/ appendices/aliases.xml language/oop5/basic.xml language/oop5/cloning.xml language/oop5/typehinting.xml language/predefined/closure.xml language/predefined/errorexception.xml language/predefined/interfaces.xml reference/array/functions/array-udiff.xml security/filesystem.xml
[email protected] (Yu Ilho)
| Newsgroups | php.doc.kr |
|---|---|
| Message-ID | <[email protected]> |
acidd15 Sat, 08 Aug 2015 14:55:11 +0000
Revision: http://svn.php.net/viewvc?view=revision&revision=337329
Log:
resolve stales
Changed paths:
U phpdoc/kr/trunk/appendices/aliases.xml
U phpdoc/kr/trunk/language/oop5/basic.xml
U phpdoc/kr/trunk/language/oop5/cloning.xml
U phpdoc/kr/trunk/language/oop5/typehinting.xml
U phpdoc/kr/trunk/language/predefined/closure.xml
U phpdoc/kr/trunk/language/predefined/errorexception.xml
U phpdoc/kr/trunk/language/predefined/interfaces.xml
U phpdoc/kr/trunk/reference/array/functions/array-udiff.xml
U phpdoc/kr/trunk/security/filesystem.xml
Modified: phpdoc/kr/trunk/appendices/aliases.xml
===================================================================
--- phpdoc/kr/trunk/appendices/aliases.xml 2015-08-08 14:54:32 UTC (rev 337328)
+++ phpdoc/kr/trunk/appendices/aliases.xml 2015-08-08 14:55:11 UTC (rev 337329)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 334418 Maintainer: acidd15 Status: ready -->
+<!-- EN-Revision: 336237 Maintainer: acidd15 Status: ready -->
<!-- Reviewed: no -->
<appendix xml:id="aliases" xmlns="http://docbook.org/ns/docbook">
<title>함수 별칭 목록</title>
@@ -1132,11 +1132,6 @@
<entry><link linkend="ref.ming">Ming (flash)</link></entry>
</row>
<row>
- <entry>rewind</entry>
- <entry><function>rewinddir</function></entry>
- <entry>Base syntax</entry>
- </row>
- <row>
<entry>rotate</entry>
<entry><function>swfdisplayitem_rotate</function></entry>
<entry><link linkend="ref.ming">Ming (flash)</link></entry>
Modified: phpdoc/kr/trunk/language/oop5/basic.xml
===================================================================
--- phpdoc/kr/trunk/language/oop5/basic.xml 2015-08-08 14:54:32 UTC (rev 337328)
+++ phpdoc/kr/trunk/language/oop5/basic.xml 2015-08-08 14:55:11 UTC (rev 337329)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 333213 Maintainer: acidd15 Status: ready -->
+<!-- EN-Revision: 336715 Maintainer: acidd15 Status: ready -->
<!-- Reviewed: no -->
<sect1 xml:id="language.oop5.basic" xmlns="http://docbook.org/ns/docbook">
@@ -122,8 +122,8 @@
$instance = new SimpleClass();
// 변수를 사용해서 가능합니다.:
-$className = 'Foo';
-$instance = new $className(); // Foo()
+$className = 'SimpleClass';
+$instance = new $className(); // new SimpleClass()
?>
]]>
</programlisting>
Modified: phpdoc/kr/trunk/language/oop5/cloning.xml
===================================================================
--- phpdoc/kr/trunk/language/oop5/cloning.xml 2015-08-08 14:54:32 UTC (rev 337328)
+++ phpdoc/kr/trunk/language/oop5/cloning.xml 2015-08-08 14:55:11 UTC (rev 337329)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 331135 Maintainer: acidd15 Status: ready -->
+<!-- EN-Revision: 337312 Maintainer: acidd15 Status: ready -->
<!-- Reviewed: no -->
<sect1 xml:id="language.oop5.cloning" xmlns="http://docbook.org/ns/docbook">
Modified: phpdoc/kr/trunk/language/oop5/typehinting.xml
===================================================================
--- phpdoc/kr/trunk/language/oop5/typehinting.xml 2015-08-08 14:54:32 UTC (rev 337328)
+++ phpdoc/kr/trunk/language/oop5/typehinting.xml 2015-08-08 14:55:11 UTC (rev 337329)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 331202 Maintainer: acidd15 Status: ready -->
+<!-- EN-Revision: 335484 Maintainer: acidd15 Status: ready -->
<!-- Reviewed: no -->
<sect1 xml:id="language.oop5.typehinting" xmlns="http://docbook.org/ns/docbook">
Modified: phpdoc/kr/trunk/language/predefined/closure.xml
===================================================================
--- phpdoc/kr/trunk/language/predefined/closure.xml 2015-08-08 14:54:32 UTC (rev 337328)
+++ phpdoc/kr/trunk/language/predefined/closure.xml 2015-08-08 14:55:11 UTC (rev 337329)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 318298 Maintainer: acidd15 Status: ready -->
+<!-- EN-Revision: 336800 Maintainer: acidd15 Status: ready -->
<!-- Reviewed: no -->
<phpdoc:classref xml:id="class.closure" xmlns:phpdoc="http://php.net/ns/phpdoc" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xi="http://www.w3.org/2001/XInclude">
@@ -58,6 +58,7 @@
&language.predefined.closure.construct;
&language.predefined.closure.bind;
&language.predefined.closure.bindto;
+ &language.predefined.closure.call;
</phpdoc:classref>
Modified: phpdoc/kr/trunk/language/predefined/errorexception.xml
===================================================================
--- phpdoc/kr/trunk/language/predefined/errorexception.xml 2015-08-08 14:54:32 UTC (rev 337328)
+++ phpdoc/kr/trunk/language/predefined/errorexception.xml 2015-08-08 14:55:11 UTC (rev 337329)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 332523 Maintainer: acidd15 Status: ready -->
+<!-- EN-Revision: 336073 Maintainer: acidd15 Status: ready -->
<!-- Reviewed: no -->
<phpdoc:exceptionref xml:id="class.errorexception"
@@ -85,8 +85,12 @@
<programlisting role="php">
<![CDATA[
<?php
-function exception_error_handler($errno, $errstr, $errfile, $errline ) {
- throw new ErrorException($errstr, 0, $errno, $errfile, $errline);
+function exception_error_handler($severity, $message, $file, $line) {
+ if (!(error_reporting() & $severity)) {
+ // This error code is not included in error_reporting
+ return;
+ }
+ throw new ErrorException($message, 0, $severity, $file, $line);
}
set_error_handler("exception_error_handler");
Modified: phpdoc/kr/trunk/language/predefined/interfaces.xml
===================================================================
--- phpdoc/kr/trunk/language/predefined/interfaces.xml 2015-08-08 14:54:32 UTC (rev 337328)
+++ phpdoc/kr/trunk/language/predefined/interfaces.xml 2015-08-08 14:55:11 UTC (rev 337329)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 330333 Maintainer: acidd15 Status: ready -->
+<!-- EN-Revision: 337170 Maintainer: acidd15 Status: ready -->
<!-- Reviewed: no -->
<part xml:id="reserved.interfaces" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
@@ -16,6 +16,7 @@
&language.predefined.traversable;
&language.predefined.iterator;
&language.predefined.iteratoraggregate;
+ &language.predefined.throwable;
&language.predefined.arrayaccess;
&language.predefined.serializable;
&language.predefined.closure;
Modified: phpdoc/kr/trunk/reference/array/functions/array-udiff.xml
===================================================================
--- phpdoc/kr/trunk/reference/array/functions/array-udiff.xml 2015-08-08 14:54:32 UTC (rev 337328)
+++ phpdoc/kr/trunk/reference/array/functions/array-udiff.xml 2015-08-08 14:55:11 UTC (rev 337329)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 331477 Maintainer: acidd15 Status: ready -->
+<!-- EN-Revision: 336715 Maintainer: acidd15 Status: ready -->
<!-- Reviewed: no -->
<refentry xml:id="function.array-udiff" xmlns="http://docbook.org/ns/docbook">
@@ -134,7 +134,7 @@
<programlisting role="php">
<![CDATA[
<?php
-Class MyCalendar {
+class MyCalendar {
public $free = array();
public $booked = array();
Modified: phpdoc/kr/trunk/security/filesystem.xml
===================================================================
--- phpdoc/kr/trunk/security/filesystem.xml 2015-08-08 14:54:32 UTC (rev 337328)
+++ phpdoc/kr/trunk/security/filesystem.xml 2015-08-08 14:55:11 UTC (rev 337329)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 297645 Maintainer: acidd15 Status: done -->
+<!-- EN-Revision: 336910 Maintainer: acidd15 Status: done -->
<!-- splitted from ./index.xml, last change in rev 1.66 -->
<chapter xml:id="security.filesystem" xmlns="http://docbook.org/ns/docbook">
<title>파일시스템 보안</title>