On these days, I've been doing a lot of files on frameworks, projects, etc., and I'm seeing several things I've never seen, one of them is PHPDoc (I got the name thanks to my IDE) about!
Example :
class Foo {
/**
* Constructor...
Does anyone know of any Electronic Consumer Invoice integration manual for PHP usage? I am developing a system that contains sales control, and I would need to issue an NFC-e, but I do not find any documentation talking about it anywhere.
I have two tables in the database, one listing the posts made and the other one of the registered users.
Columns that I have in the posts table:
ID || TEXTO || ID_USER ||
Columns that I have in the user table:
ID || NOME_USER || SENHA...
I have a file something like this:
%usuario: 'Anônimo'
Olá <b>%{usuario}</b>
(This is just an example and is not the real case), but I think if I were to explain the real problem it would give me a lot more work to understand, s...
Example scenario:
echo hello();
echo '<br>';
echo 'Hello ' . world('World');
function hello() {
return 'World';
}
function world($v) {
return $v;
}
Output:
World
Hello World
How does PHP process this?
Ab...
I'm developing a tool to send bulk emails to a list of 20,000 emails, and the script is this:
<?php
$path = "listas/lista1.txt";
$ponteiro = fopen ("$path", "r");
$conteudo = fread ($ponteiro, file...
I want to list image files in a folder, but the first two links that are generated appear like this:
<img class="mySlides" src="Arifureta-shokugyou/capitulo-2/." style="width:100%" />
<img class="mySlides" src="Arifureta-shokugyou/cap...
I'm having a problem with @extends('layouts.template') . Only my view that is like index that does not show the page, instead shows me only this @extends('layouts.template') on the page. What could it be?
obs: the route is normal...
I have a function in php that returns this to me.
[{"id":81,"username":"usuarioteste23"}]
How can I save a Username and variable in a variable?
Thank you.