As you now I have Msc degree of Artifical Intelligence and Bsc in Software engineering, and several years experiences in programming and Development Especially with Python and Php, Particularly PHP is my incoming language, but I always suffering from it because it had limited abilities,limited libraries, Today, when I was in feed reading, I found an interesting article about Machine Learning library in PHP with an example of how use this library, How to Analyze Tweet Sentiments with PHP Machine L
What’s New and Exciting in PHP 7.1?
Nowadays I'm very busy and working hard on http://www.zeyton.com, it's a exciting project, later I'll talk to you more about that and about new technologies we are used there.
PHP development is one of my skill and as a developer we have to be update, as you know PHP 7.1.x Related on 01 Dec 2016 and there is several interesting thins there,
Run a php script in background
When we need to run some script without waiting the fronted user till the process is not completed, For that we need to execute some script in background to hiding the execution time to user.This process is hidden to the end user. It improves your Website efficiency.
Php Scraping data with Goutte
We're still on our way to better data scraping. We did a great job last time, but it's time for improvements. Now I want to introduce another even higher level tool for data scraping - Goutte. It's originally written by Fabien Potencier, the creator of the Symfony framework and is now maintained by FriendsOfPHP.
GraphQL with PHP and the Symfony Framework
The origins of GraphQL stem from the needs that Facebook's mobile applications had (and continue to have). They needed a data-fetching API that was flexible enough to describe all the different kinds of data that the social network had available.
PhpCompatibility for PHPCS : Are You PHP7 Ready?
Sooner or later, there will come a time when you will need to migrate your projects to different PHP versions. How will you check if you’re compatible with a PHP version different to the one you’ve been developing on?
What are PHP Traits?
One of the problems of PHP as a programming language is the fact that you can only have single inheritance. This means a class can only inherit from one other class.
However, a lot of the time it would be beneficial to inherit from multiple classes. For example, it might be desirable to inherit methods from a couple of different classes in order to prevent code duplication.
This problem can lead to class that has a long family history of inheritance which often does not make sense.