Skip to content

Instantly share code, notes, and snippets.

View rluena's full-sized avatar
🏠
Working from home

Rabii Luena rluena

🏠
Working from home
View GitHub Profile
<?php
class string {
protected $_src = null;
public function __construct($src = '') {
$this->_src = $src;
}
public function __toString() {
return $this->_src;