![PHP Tutorial: How to make your own PHP framework [part 2 of 2]](https://artslap.io/wp-content/uploads/2022/08/1200x628_elasticsearch-tutorial-min.jpg)
PHP Tutorial: How to make your own PHP framework [part 2 of 2]
This is the second part in our “How to make your own PHP framework”-tutorial. Check out the first part of […]
Read moreThis is a post about if statements and how to use them accordingly (depending on your language of course).
function myMethod(mixed $variable) : bool {
if ($variable) {
return true;
} else {
return true;
}
}
function myMethod(mixed $variable) : bool {
return !!($variable ?? false)
}
This is the second part in our “How to make your own PHP framework”-tutorial. Check out the first part of […]
Read moreWe’ve all been there; “how does a framework work?”, “what is the purpose of a framework?” or maybe even “how […]
Read more