ReflectionClass
PHP Manual

ReflectionClass::getEndLine

(PHP 5)

ReflectionClass::getEndLine終了行を取得する

説明

public int ReflectionClass::getEndLine ( void )

ユーザー定義クラスの定義の終了行を取得します。

パラメータ

この関数にはパラメータはありません。

返り値

ユーザー定義クラスの定義の終了行を返します。不明な場合は FALSE を返します。

例1 ReflectionClass::getEndLine() の例

<?php
// テストクラス
class TestClass { }

$rc = new ReflectionClass('TestClass');

echo 
$rc->getEndLine();
?>

上の例の出力は以下となります。

3

参考


ReflectionClass
PHP Manual