PHP Classes

File: tests/is_longitude.php

Recommend this page to a friend!
  Classes of Ali YILMAZ   Mind Framework   tests/is_longitude.php   Download  
File: tests/is_longitude.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Mind Framework
Framework that implements several design patterns
Author: By
Last change:
Date: 1 year ago
Size: 214 bytes
 

Contents

Class file image Download
<?php

require_once '../src/Mind.php';

$Mind = new Mind();

$longitude = 28.971111;

echo
'<br>';

if(
$Mind->is_longitude($longitude)){
    echo
'The current longitude.';
} else {
    echo
'Invalid longitude.';
}