Skip to content

Instantly share code, notes, and snippets.

View rajeshbakade65's full-sized avatar
🧐
coding guides

Rajesh Bakade rajeshbakade65

🧐
coding guides
  • on earth
View GitHub Profile
@rajeshbakade65
rajeshbakade65 / using-self-in-php.php
Created August 11, 2020 14:45
php self:: Example
<?php
class books
{
public static $bookId = 0;
public function updateBookInfo($id)
{
self::$bookId = $id;
}
public function getBookId()
{