1. Go to this page and download the library: Download type-lang/phpdoc library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
type-lang / phpdoc example snippets
$parser = new \TypeLang\PHPDoc\Parser();
$result = $parser->parse(<<<'PHPDOC'
/**
* Example description {@see some} and blah-blah-blah.
*
* @Example\Annotation("foo")
* @return array<non-empty-string, TypeStatement>
* @throws \Throwable
*/
PHPDOC);
var_dump($result);
/** |
* Hello world | ← DocBlock's description.
* |
* @param int $example | ← DocBlock's tag #1.
* @throws \Throwable Description | ← DocBlock's tag #2.
*/ |
/**
* DocBlock structure pseudocode (real impl may differ)
*
* @template-implements \Traversable<array-key, Tag>
* @template-implements \ArrayAccess<array-key, Tag>
*/
class DocBlock
{
public ?Description $description { get; }
public iterable<array-key, Tag> $tags { get; }
}
/**
↓↓↓↓↓↓↓↓↓↓↓ | ← This is a nested tag of the description.
* Hello world {@see some} and blah-blah-blah. |
↑↑↑↑↑↑↑↑↑↑↑ ↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑ | ← This is part of the template.
*/
/**
↓↓↓↓↓↓ | ← This is a tag name.
* @throws \Throwable An error occurred. |
↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑ | ← This is tag description.
*/
/**
* Common tag structure pseudocode (real impl may differ)
*/
class Tag implements \Stringable
{
public non-empty-string $name { get; }
public ?Description $description { get; }
}
/**
* Throws tag structure pseudocode (real impl may differ)
*/
class ThrowsTag extends Tag
{
public TypeStatement $type;
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.