Share & grow the world's knowledge!
We want to connect the people who have knowledge to the people who need it, to bring together people with different perspectives so they can understand each other better, and to empower everyone to share their knowledge.
What is the difference between P_TRIG and -|P| in tia portal?
Hi, use P_TRIG to monitior everything in the left of this instruction. It turns to ON for one scan when the entire set of logic to the left goes from off to on use -|P| to monitor a single tag. it turns on one scan when the tag goes from off to on. Best regards
Hi,
use P_TRIG to monitior everything in the left of this instruction. It turns to ON for one scan when the entire set of logic to the left goes from off to on
use -|P| to monitor a single tag. it turns on one scan when the tag goes from off to on.
Best regards
See lessHow do I use a global variable inside a function using Python?
Follow this example to create a variable outside functions, and use it inside the functions: MyVariable = 99 #this is a global variable def changeAndPrint_GlobalVariable(): global MyVariable #use global variable in this function with "global" keyword print('Global variable "MyVariable" before changeRead more
Follow this example to create a variable outside functions, and use it inside the functions:
This code will print:
How to flatten a list of lists in python?
Hello this code may help you: def flatten_list(original_List): flat_list = [] for sub_list in original_List: for element in sub_list: flat_list.append(element) return flat_list #test original_List=[['a', 'b', 'c', 'd','e'], ['f', 'g', 'h', 'i'], ['j', 'k', 'l'], ['m', 'n', 'o']] print('original listRead more
Hello
this code may help you:
How to calculate the difference between two dates using PHP language?
Please use this code: $first_date = new DateTime("2022-01-01"); $second_date = new DateTime("2023-02-02"); $difference = $first_date->diff($second_date); echo "<difference> = " . $difference->y . " years, " . $difference->m." months, ".$difference->d." days " . "<difference in dRead more
Please use this code:
It works as you expect
See lessHow to concatenate strings together in PHP?
Hi, This is the syntax to concatenate strings: $text1 = "hello"; $text2 = "world"; $text = $text1 . ' ' . $text2; For your code, use this: function UppercaseText($text_list) { $GlobalText = ""; $TableSize = sizeof($text_list);; for ($i = 0; $i < $TableSize; $i++) { $BigText[] = strtoupper($text_lRead more
Hi,
This is the syntax to concatenate strings:
For your code, use this:
Have a good day
See lessHow to update SEO Focus keyphrase programmatically of woocommerce product?
Hi, I think Yoast SEO removed metakeywords. Please see this aricle : Meta keywords Why we don't use them - and neither should you use this key instead : _yoast_wpseo_focuskw You can update it like any post meta. This is the syntax: //the value of the focus key word $myFocusKeyword = "focus keyword eRead more
Hi,
I think Yoast SEO removed metakeywords. Please see this aricle :
Meta keywords Why we don’t use them – and neither should you
use this key instead :
You can update it like any post meta. This is the syntax:
I tested it and it works fine.
regards
See lessHow to fix Error 80A3 Modbus TCP MB_client ?
Hi, In my case, I used multiple MB_client function blocks to read data. I was using the same client ID for all of them. I changed the connection ID of those differents connections and the problem was fixed. if you have 3 instances of MB_client. you must set unique connection ID per instance Example:Read more
Hi,
In my case, I used multiple MB_client function blocks to read data. I was using the same client ID for all of them. I changed the connection ID of those differents connections and the problem was fixed.
if you have 3 instances of MB_client. you must set unique connection ID per instance
Example:
ID = 1 for MB_client_1 instance
ID = 2 for MB_client_2 instance
ID = 3 for MB_client_3 instance
Regards
See less