7 lines
152 B
PHP
7 lines
152 B
PHP
<?php
|
|
|
|
$r = new Grubhub_Restaurant();
|
|
|
|
foreach ($r->dishes() as $dish) {
|
|
echo '<b>'.$dish->name.'</b> ('.$dish->price.')<br>';
|
|
} |