this:
class Test {
public $A;
public $B;
public static $C;
}
$test = new Test();
print_r($test);
var_dump($test);
yields:
Test Object ( [A] => [B] => )
object(Test)#1 (2) { ["A"]=> NULL ["B"]=> NULL }
Where is the static var C?
I'm hesitant about using static variables and functions in classes. It seems as though they are becoming commonplace for simplicity sake - but there are always two sides to a coin. What is your argument and why?
-Geates
Currently, I am using a foreach() loop to count the occurrences of numbers in a string...and to count uppercase letters...and to count lowercase letter...and to count special chars. I feel like there is a "simpler" to do it with regex. Is there?
$n = 0;
$string_as_array =...
I'm trying to traverse a DOM object. Furthermore, this DOM object is the result of $.parseHTML(). My code makes sense but it's not working so I must not be considering something. Any help would be greatly appreciated?
var str = "<div id='one'><div id='header'><b>hello</b></div><img...
I have some code that returns the a date of the last SCCM heartbeat on a machine. It contains a value that I can not decypher. I was hoping someone might be able to tell me what it is. What is 157258080?
sys_data.lastlogon0 is the number of nanoseconds since Jan, 1, 1900 (I think)...
I want to create a table that "auto wraps" - a table that reaches a certain limit causing the next row to overwrite the first. How would one configure such a table?
-Geates
http://ns7.webmasters.com/caspdoc/html/vbscript_language_reference.htm
I have a database that has been collecting data for several years. Only the past 90 days is used daily, the rest can be archived. I would like to do so by moving it into another table. I have written a query that returns rows older than 90 days:
SELECT table.A, table.B, table.C, table.D...
I wrote a vbs script to parse and filter large log files into xml. The xml document is then opened and rendered in a browser. There are several manual steps involved in this process and I'd like to bring the steps together and do the parse, filter, and xml render in an HTA. The problem I'm...
set objFSO = CreateObject("Scripting.FileSystemObject")
'Generates an "Invalid procedure call or argument" error
set objStream = objFSO.OpenTextFile("C:\file.txt", 1, true, 1)
'Does not generate an error
set objStream = objFSO.OpenTextFile("C:\file.txt", 1, 1)
What gives?
-Geates...
I'm trying to automate a process through a Citrix connection. The .AppActivate works fine and the .sendkeys works with letters, numbers, and symbols, but not control keystrokes like enter or tab ({ENTER}, {TAB}). It could be as simple as "Citrix doesn't observe control keystrokes issued by...
So I have an old HP dv4 from 2008. The hdd malfunctions so I bought a replacement. I was going to use the recovery CDs to put the OS (Vista 64) back on the computer but noticed the PK on the COA had worn off ... completely. It seems like my only legitimate option would be to install a retail...
I have a document that outlines the version history of our logon script. Every so often, I tweak our logon script and I record the changes in a few locations. I would like to automate updating our document. About half way down the document is where the version history is recorded in a...
I provided a solution for a VBS thread regarding fraction simplification - thread329-1697266. The solution accepts two values and simplies them as if they were the nominator and the denominator; works beautifully when run as a VBS. However, when implemented into an HTML, the values are read...
While troubleshooting thread216-1697987, I ran into something I do not understand. Can anyone explain to me why the .remove() is not necessary? If it's uncommented, the function removes 2 items from the source select
<!DOCTYPE html>
<html>
<HEAD>
<title>Mulitiple swap on click</title>...
is there a vbs function or a combination of functions that would remove all special chars from a string; leaving just literals. What about a regex solution?
before:
"\t20 dwarfs took turns doing\n handstands on the carpet\r"
after:
"20 dwarfs took turns doing handstands on the carpet"
This...
I am creating a modal website that uses jQuery ajax calls to retieve HTML and load a modal. When running the site locally, the ajax command executes completely and returns results. However, once it is uploaded to the server, the modal does not get filled. I've considered it being because the...
I spent a while trying to figure this out. This is a fundamental example of what I came up with. It may be useful. I welcome any CONSTRUCTIVE comments :)
-Geates
"I hope I can chill and see the change - stop the bleed inside and feel again. Cut the chain of lies you've been feeding my...
I have a table that has 4 columns: Start Time (A), End Time (B), Regular (C), and Overtime (D). I want columns C and D to be automatically populated based on what is entered in A and B. Here's the formula I have in cell C (assume row 1)
C1 = (hour(B1) + (minute(B1) / 60)) - (hour(A1) +...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.