<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: The Azhar Dev</title>
    <description>The latest articles on DEV Community by The Azhar Dev (@azhar64100).</description>
    <link>https://dev.to/azhar64100</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F928392%2Fa2caed64-18a2-4285-a039-4dbdfef39f38.jpg</url>
      <title>DEV Community: The Azhar Dev</title>
      <link>https://dev.to/azhar64100</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/azhar64100"/>
    <language>en</language>
    <item>
      <title>PHP Let Static Binding Example</title>
      <dc:creator>The Azhar Dev</dc:creator>
      <pubDate>Sun, 18 Sep 2022 17:18:34 +0000</pubDate>
      <link>https://dev.to/azhar64100/php-let-static-binding-example-3nfc</link>
      <guid>https://dev.to/azhar64100/php-let-static-binding-example-3nfc</guid>
      <description>&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;?php
    class Course{
        protected static $coursName = "python advance course";

        public static function getCourseName(){
            return static::$coursName;
        }

    }
    class Student extends Course{
        protected static $coursName="zend php";
    }
    echo Student::getCourseName();

    // $obj = new Student;
    // echo $obj-&amp;gt;getCourseName();

on getCourseName(){
            return static::$coursName;
        }

    }
    class Student extends Course{
        protected static $coursName="zend php";
    }
    echo Student::getCourseName();

    // $obj = new Student;
    // echo $obj-&amp;gt;getCourseName();
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>php</category>
    </item>
  </channel>
</rss>
