Supported Versions: PHP 4, PHP 5, PHP 7, PHP 8
Uppercase the first character of each word in a string
<?php ucwords(string $string, string $separators = " \t\r\n\f\v"): string
<?php     public function setAttributes(array $attributes): static

    {

        foreach ($attributes as $key => $value) {

            $set = 'set'.str_replace('_', '', ucwords($key, '_'));



            if (is_object($value) || !method_exists($this, $set)) {

                $this->attributes[$key] = $value;