PHP For Beginners, Ep 33 - Build a Better PHP Router

Поделиться
HTML-код
  • Опубликовано: 18 окт 2024

Комментарии • 38

  • @VideoDarslar
    @VideoDarslar 11 месяцев назад +1

    Thanks for the lesson. I didn't understand what really happens behind the scenes in Laravel and now I do 😊

  • @DougLopes
    @DougLopes Год назад +2

    Amazing didatics as always (i'll say it again, even for us that already use the language for long time)...
    I'd just add constants in Router class for each method, because it bother's me using "magic strings" even if its used once.

  • @hugo-abdou
    @hugo-abdou Год назад +9

    i have a filing that this series will end up with laravel as final result hhhhh

    • @lucasj.pereira4912
      @lucasj.pereira4912 Год назад +7

      It is probably the point. Teach the users how the MVC and logic works so it's easy for someone to start on Laravel or keep it as mini-framework for small projects. I did something similar with a course teaching like this and in the end started Laravel and was like: "Hey, it's really similar" and was really easy to migrate a project to the framework.

    • @Laracastsofficial
      @Laracastsofficial  Год назад +18

      It's precisely the point. :)
      I want to make onboarding to any PHP framework as intuitive as possible. When you try Laravel after completing this series, you'll think to yourself, "Oh, I totally get this."

    • @syedjackson6931
      @syedjackson6931 Год назад

      @@Laracastsofficial 🥳💝

    • @hugo-abdou
      @hugo-abdou Год назад

      @@Laracastsofficial thank you i love the way you explain with

  • @whisperscribe
    @whisperscribe 5 месяцев назад

    great stuff Jeffrey!

  • @michaellamas6479
    @michaellamas6479 Год назад +1

    Great how you explain it step by step. I love it.
    The method add is public, but on that point it could be private like the variable routes, couldn't it?

  • @andreymikhalev7464
    @andreymikhalev7464 Год назад +3

    Cool thing will be later to show how {param} variables can be appended to routes

  • @davidasadi5041
    @davidasadi5041 Год назад

    Thanks for awesome tutorials
    I learn a lot about core php
    👌👌👌

  • @jediampm
    @jediampm Год назад +1

    Hi, great video.
    One thing that i do not understand is how in note route route ( show route) , the URI match ?
    since that route has a query string, which query string is in URI should not match.
    Another thing, i think that in first version of this series, at root of routes array you create the methods as keys and associate the respective route ( uri + controller) to method key, so you had assoc array instead of index array that you have now in this new series.
    And why not use preg_match?

    • @Laracastsofficial
      @Laracastsofficial  Год назад +2

      Because we're only getting the path, not the query string.
      $uri = parse_url($_SERVER['REQUEST_URI'])['path'];

    • @jediampm
      @jediampm Год назад

      @@Laracastsofficial
      Ya, after i post the comment i went to review the code and reach the same conclusion, lol.
      Anyways should be useful for others.

  • @AK2000YY
    @AK2000YY Месяц назад

    this episode is a little hard, but amazing

  • @notnotkeshav
    @notnotkeshav Месяц назад +1

    I have written all the routes using the router->get() syntax, but only the top 1 is getting rendered rest all are showing Error404.php page 😢. Can somebody help me?

  • @alikaram98
    @alikaram98 Год назад

    Tanks a lot

  • @marcrebadina1489
    @marcrebadina1489 Год назад

    Hi @Laracastsofficial how do you handle the routes for images inside the uploads folder? It always goes to 404 even on direct URL. Or even CSS/JS folder so I can add it dynamically on my routes.

  • @mahdielhajuojy1112
    @mahdielhajuojy1112 Год назад +1

    you the best

  • @ajaybagdia
    @ajaybagdia 7 месяцев назад

    used this code with IIS Server with web.config file to send each file to public/index.php
    but could not load the static files like .js, .css and images
    can you guide

  • @chzmo
    @chzmo Год назад

    You the best 👌

  • @binuavin
    @binuavin Год назад +2

    That meme😂😂

  • @gherosh
    @gherosh Год назад

    Why wont use URI as $routes array key in order not to cycle the $routes array for finding the matching REQUEST URI?

  • @rustamergashev7278
    @rustamergashev7278 2 месяца назад

    👍

  • @DaviMartins99
    @DaviMartins99 Год назад

    Anyone knows what theme Jeffey is using here? I tried Googling, but only found the old theme in Laracasts.

    • @devanii
      @devanii Год назад

      i think materialize?

    • @Laracastsofficial
      @Laracastsofficial  Год назад +1

      It's called Carbon.
      All of the things I use are listed here: laracasts.com/uses

  • @lserranoit
    @lserranoit Год назад

    Hey Jeffrey, is the source code available?

  • @martinmata3675
    @martinmata3675 Год назад

    is there a way to get the code of this video??

  • @syedjackson6931
    @syedjackson6931 Год назад

    can we stand against AI with php ?

  • @Dev.Waleed
    @Dev.Waleed 8 месяцев назад

    I tried a lot on your routers but these are not working, even on real website i tried to implement it not working.

  • @Dev.Waleed
    @Dev.Waleed 8 месяцев назад

    Your routers way isn't working . I tried a lot but getting in trouble each time. I also tried to implement it on real hosted website to analyze either may be something wrong with my virtual php environment but still it's not been working.

    • @johnnybrunerdesigns
      @johnnybrunerdesigns 4 месяца назад

      Did you ever figure it out? Nothing is working for me either with this new router.

  • @johnnybrunerdesigns
    @johnnybrunerdesigns 3 месяца назад

    Is anyone still monitoring this playlist? Everything has worked great until this video. The new routing system has broken everything and nothing works.

  • @paulbrugger9610
    @paulbrugger9610 11 месяцев назад +1

    In order to actually save a new note and to delete a note, routes.php should be
    $router->get('/', 'controllers/index.php');
    $router->get('/about', 'controllers/about.php');
    $router->get('/contact', 'controllers/contact.php');
    $router->get('/notes', 'controllers/notes/index.php');
    $router->get('/note', 'controllers/notes/show.php');
    $router->get('/notes/create', 'controllers/notes/create.php');
    // Jeffrey forgot these last two routes
    $router->post('/notes/create','controllers/notes/create.php');
    $router->delete('/note','controllers/notes/show.php');