Add generate-renderer and dummy renderer

pull/8455/head
Kamran Ahmed 2 weeks ago
parent 74781d6e7b
commit 5a1f52892e
  1. 2
      .github/workflows/deployment.yml
  2. 2
      src/data/roadmaps/php/content/reading-files@S9wTlkbv9-R6dohhZ47hs.md

@ -39,7 +39,7 @@ jobs:
run: |
git clone https://${{ secrets.GH_PAT }}@github.com/roadmapsh/web-draw.git .temp/web-draw --depth 1
npm run generate-renderer
npm run compress:images
# npm run compress:images
npm run build
# --------------------

@ -4,7 +4,7 @@ Reading files is a common task in PHP and it provides a range of functions for t
Here's a small example using `fgets()`:
```PHP
```php
$file = fopen("example.txt", "r");
if ($file) {
while (($line = fgets($file)) !== false) {

Loading…
Cancel
Save