mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-06 11:10:42 +00:00
10 lines
191 B
PHP
10 lines
191 B
PHP
<?php
|
|
require_once('algorithm.php');
|
|
|
|
$points = [[3, 5], [5, 3], [5, 5], [5, 0]];
|
|
$objects = array_map([new Algorithm, 'distance'], $points);
|
|
|
|
echo '<pre>';
|
|
print_r($objects);
|
|
echo '</pre>';
|