An open API service indexing awesome lists of open source software.

https://github.com/zonuexe/control-structures.php


https://github.com/zonuexe/control-structures.php

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

        

# control-structures.php

## `Loop::while()`

```php
function () use (&$i) { return $i < 0; }]
);
```

```php
function () use (&$i) { return $i === 10; }]
);
```

## `Loop::for()`

```php
print $v . PHP_EOL);
```