I am thinking to make a PHP library for better syntax of PHP (in functions).
Currently I feel that its too clumsy and unorganised. There are many functions without any use and many useful functionalities can be added to older ones. Like instead of learning all GD functions for common tasks we can use it like.
$image = new Image("image.jpg");
$image = $image->rotate(45);
$image -> output();
So should I go ahead?