The way you explain is amazing and easy to understand.. thanks
@moraaoo4889 Жыл бұрын
the was the third video to me about this to watch, and the first video make me understand :)
@surfer_silver4 ай бұрын
I actually love dynamic typing. It's great.
@persiansayed3 жыл бұрын
Great explanation! Thank you.
@karenmelikyan3772 жыл бұрын
The simplicity of explanation speaks of high professionalism. Good job! Thanks.
@alan-overthenet3 жыл бұрын
Excellent, Dave, thanks a lot.
@giorgiobarone97843 жыл бұрын
As always a great apportation by you
@sameera-dananjaya-wijerathna3 жыл бұрын
good explanation ! thanks !
@NedumEze5 ай бұрын
Please, will the ?string $username apply to the parameter passed to a Constructor for initialization?
@dave-hollingworth5 ай бұрын
I haven't tried it but it should be, yes
@NedumEze5 ай бұрын
@@dave-hollingworth Thank you sir
@_Mikekkk7 ай бұрын
What php editor do you use and how do you run this code in command line?
@dave-hollingworth7 ай бұрын
Visual Studio Code, running the code using the regular command prompt application. You can run interactive PHP with the -a flag, e.g. php -a
@sergey_gabrielyan10013 жыл бұрын
Hello, I want to know, is it possible to give type hinting to roles and permissions separately? public function getRoles(): array { if (Gate::allows('role_access')) { $roles = Role::with('permissions')->orderBy('id', 'DESC')->get(); $permissions = Permission::all(); return [ 'roles' => $roles, 'permissions' => $permissions ]; } }
@dave-hollingworth3 жыл бұрын
I'm not sure what you mean - you can add type hints to only individual arguments or return values, you don't have to add them everywhere if you don't want to.
@sergey_gabrielyan10013 жыл бұрын
Thank you so much
@acos213 жыл бұрын
What font is this?
@dave-hollingworth3 жыл бұрын
In the editor and on the command line, DejaVu Sans Mono
@andrew.schaeffer40322 жыл бұрын
Thanks for the helpful video! I'll probably be taking your courses and wonder if you have any suggestions for learning Apache? It keeps coming up, and I think it'd make my life a lot easier if I understood it instead of just guessing and copying code.
@dave-hollingworth2 жыл бұрын
Once Apache is installed, you don't usually need to configure it much, especially if you use something like XAMPP. There's a good tutorial here though if you're interested: www.guru99.com/apache.html
@andrew.schaeffer40322 жыл бұрын
@@dave-hollingworth Thanks!
@johnydevlin2 жыл бұрын
why did you write "Course" near $course. What is it called and what is its purpose.
@dave-hollingworth2 жыл бұрын
It's the type declaration for the Course class. It declares the function argument as an object of the class "Course"
@johnydevlin2 жыл бұрын
@@dave-hollingworth Thank you sir 🙏
@johnydevlin2 жыл бұрын
@@dave-hollingworth Sir, Please make video tutorial on Laravel framework
@ademineshat3 жыл бұрын
Thanks 👍
@mahfoudhani12523 жыл бұрын
thank you it is well
@MobiusCoin3 жыл бұрын
So... I'm a WordPress theme developer so I'm not really a PHP developer. Can you do a video on the PHP interactive mode? I didn't know this existed until now lol.
@dave-hollingworth3 жыл бұрын
Ok, will add it to my list!
@marcinzawodnik63173 жыл бұрын
👍
@DigitalDuty6 ай бұрын
ဆိုလိုရင်းကို နားလွယ်လွယ်စေသည့်ဖန်တီးမှုတစ်ခုပါ
@mohamedab64403 жыл бұрын
Error Number: 1054 Unknown column 'category_table.*' in 'field list' SELECT `id`,`autor_name`,`title`, SUBSTRING(`content`, 1, 300) AS content,`image_url`,`show_first`, `date_creation`,`views`, `featured_for_menu`, `category_table`.`*` FROM `aricle_table`, `category_table` WHERE `aricle_table`. `id_category`= `category_table`.`id_category` ORDER BY `date_creation` DESC LIMIT 7 OFFSET 0 Filename: C:/xampp/htdocs/ArabicBlog/system/database/DB_driver.php Line Number: 691
@dave-hollingworth3 жыл бұрын
The wildcard character * doesn't need delimiting - so instead of `category_table`.`*` use `category_table`.*