Questions tagged as 'php'

1
answer

Problems with date transform function

$data = $_POST["data"]; // Recebe a variável com a data, e cria um objeto DateTime a partir do formato especificado. $objetoData = DateTime::createFromFormat('d/m/Y', $data); // Reformata a data do jeito desejado $data =...
asked by 14.12.2018 / 03:18
1
answer

How to make a webservice in php? [closed]

I need to use it to query customer data. How do I? I have no experiences consuming services and need references.     
asked by 21.03.2014 / 17:50
5
answers

How to use str_replace in single quotation marks without removing the ones that are needed?

I'm fiddling with a database of a friend who has had some data entered wrong or a bit confusing or it's me that's making it difficult.    Ex: Mariana "Gurizinha's" This example was saved to the database as follows: \'Gurizinha\'s\'...
asked by 18.02.2014 / 17:24
3
answers

Problems with performance using UPDATE

I'm building an import application that takes the lines of a txt file and does the update in two tables, it works normally, but the files usually have more than 5 thousand lines, and I'm not able to do the update of all tables with my current me...
asked by 14.03.2014 / 17:12
1
answer

How important is the interface in this particular code?

If we put the functions of the interface, also inside the class, so we can create interface? Example: Interface interface Teste { function olaMundo($texto); } Class class Testando implements Teste { function olaMundo($texto)...
asked by 10.07.2017 / 18:37
3
answers

Add javascript to Wordpress plugin

I registered my Javascript file in my plugin, but the functions of click and so on. do not work. I registered my main plugin file with action : function add_scripts_to_plugin() { wp_enqueue_script( 'birthdate_celebrate_js'...
asked by 11.07.2017 / 16:55
1
answer

Sort results with month and year

I have a table with the mes E ano fields. How can I sort results by month? I am already ordering by the year = > SELECT * FROM tabela WHERE id_cliente = '$id_cliente' ORDER BY ano DESC Now how can I order the months too...
asked by 11.07.2017 / 15:44
2
answers

Highlighted searched term in bold with or without accent

Hello friends, I would love your help. I'm trying to highlight the words typed in bold in search. the code below works only if you type "Brazilian selection" plus if you type "soccer selection" nothing happens. Thanks in advance for the help .....
asked by 04.08.2015 / 03:59
4
answers

How do I get the user's name in the URL?

I'm creating a site and would like to make a system of profiles of type: meusite.com/NICKUSUARIO . And I would like to know how to get this nick in the URL and move to the profile.php file for example. I know how to use...
asked by 19.08.2015 / 17:34
3
answers

How to make an array of objects have only unique values?

If I have a collection with the same object in a array , how could I do to make this collection with only single instance objects? Example: $a = new stdClass; $a->id = 1; $b = $a; // mesmo objeto $c = new stdClass; $c->id =...
asked by 23.07.2015 / 22:36