[PHP]Creating instance of dynamic class

```php $classPath = \explode(“\”, NAMESPACE); \array_pop($classPath); $newPath = \implode(“\”, $classPath) . “\Drivers\”; $className = $newPath . Str::studly($this->driver); if (!\class_exists($className)) { throw new DriverException(‘Could not find driver’); }

[SQL] Deleting and updating data from multiple related tables(On Delete)

On Delete

  • Set null
  • Cascade
  • No action
  • Restricct

PHP Bitmask

```php const FLAG_1 = 0b0001; // 1 const FLAG_2 = 0b0010; // 2 const FLAG_3 = 0b0100; // 4 const FLAG_4 = 0b1000; // 8 // Can you see the pattern? ;-)

Task flow chat

```mermaid graph TB

Simple Store

Element

PHP-ML Apriori example

Initial

PHP natural Language Processing Tools

Classification Models

PHP Machine Learning Algorithms

Machine Learning Frameworks

Name By Desc Website
Tensorflow Google Machine learning framework Website
Pytorch Facebook Tensors and Dynamic neural networks Website
MXnet Amazon A Scalable Deep Learning Framework Website
SNTK Microsoft Microsoft Cognitive Toolkit GitHub

Global space

In PHP, the global space refers to the highest level of the PHP namespace hierarchy. It is also known as the global scope or global namespace. When you define variables, functions, classes, or constants outside of any namespaces, they are considered to be part of the global space.