Skip to content

Instantly share code, notes, and snippets.

View hurata's full-sized avatar
🏠
Working from home

Burak Hurata hurata

🏠
Working from home
View GitHub Profile
@hurata
hurata / deMorganLaws1.php
Created April 5, 2020 14:49
De Morgan Laws Example1
<?php
$array = array(
"countries" => array(
0 => array("country" => null, "population" => null, "stateCount" => null),
1 => array("country" => "USA", "population" => 320000000, "stateCount" => 50),
2 => array("country" => "Turkey", "population" => 83000000, "stateCount" => null)
)
);
@hurata
hurata / deMorganLaws.php
Created April 5, 2020 14:47
De Morgan Laws Example
<?php
$array = array(
"countries" => array(
0 => array("country" => null, "population" => null, "stateCount" => null),
1 => array("country" => "USA", "population" => 320000000, "stateCount" => 50),
2 => array("country" => "Turkey", "population" => 83000000, "stateCount" => null)
)
);