Skip to content

Instantly share code, notes, and snippets.

View Shoghy's full-sized avatar

Shoghy Martinez Shoghy

  • MekTechnology
  • Santiago De Los Caballeros, Dominican Republic
View GitHub Profile
@Shoghy
Shoghy / BetterStr.php
Last active February 16, 2024 11:47
A PHP class that saves a string and implements string methods
<?php
/**
* @property-read int $length
*/
class BetterStr{
protected string $value = "";
public function get_value(){
return $this->value;
}